/* Custom WordPress Login Page Design */

/* General Body Styling */
body.login {
    background:rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Login Form Container */
#login {
    background: rgba(255, 255, 255, 0.9);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

/* Logo Styling */
.login h1 a {
    background-image: url('https://www.wow-sa.com/wp-content/uploads/2025/06/241e58d5-b73a-45fd-85e7-e2a01b77bf76-google-1.webp'); /* Replace with your logo URL */
    background-size: contain;
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.login h1 a:hover {
    transform: scale(1.1);
}

/* Form Input Fields */
.login form {
    margin-top: 20px;
}

.login form .input,
.login input[type="text"],
.login input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 16px;
    color: #333;
    background: #f9f9f9;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.login form .input:focus,
.login input[type="text"]:focus,
.login input[type="password"]:focus {
    border-color: #EDE904;
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
    outline: none;
}

/* Submit Button */
.login .button-primary {
    width: 100%;
    padding: 12px;
    background: #EDE904;
    border: none;
    border-radius: 25px;
    color: #000000;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.login .button-primary:hover {
    background: #764ba2;
    transform: translateY(-2px);
}

.login .button-primary:active {
    transform: translateY(0);
  background: #EDE904;
}

/* Links Below the Form */
.login #nav,
.login #backtoblog {
    margin: 15px 0;
    text-align: center;
}

.login #nav a,
.login #backtoblog a {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.login #nav a:hover,
.login #backtoblog a:hover {
    color: #000000;
}

/* Error Messages */
.login .message {
    border-left: 4px solid #ff6b6b;
    background: #fff;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.language-switcher{
display:none;
}