/* Main Authentication Container */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f4f4f4;
    padding: 20px;
}

/* Auth Box Styling */
.auth-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

/* Heading Style */
.auth-box h2 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

/* Divider Line */
.auth-box .divider {
    width: 60%;
    height: 1px;
    background-color: #e0e0e0;
    margin: 15px auto;
}

/* Social Login Section */
.social-login-container {
    margin-bottom: 20px;
}

.socialaccount_providers {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.socialaccount_providers li {
    margin: 0 8px;
}

.socialaccount_providers a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.socialaccount_providers a:hover {
    background-color: #0056b3;
}

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

form .form-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form input {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 14px;
    width: 100%;
}

form input:focus {
    border-color: #007bff;
    outline: none;
}

/* Submit Button */
form .btn {
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    background-color: orange;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form .btn:hover {
    background-color:orange ;
}

/* Forgot Password */
.forgot-password {
    margin-top: 15px;
}

.forgot-password a {
    color: #007bff;
    font-size: 14px;
    text-decoration: none;
}

.forgot-password a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .auth-box {
        padding: 20px;
        max-width: 90%;
    }

    .auth-box h2 {
        font-size: 22px;
    }

    form .form-container {
        gap: 12px;
    }

    form input {
        padding: 8px;
    }

    form .btn {
        padding: 8px;
    }
}


/* General Styles for Email Verification Page */
.email-verification-page {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Heading Style */
.email-verification-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

/* Message Style */
.email-verification-message {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 20px;
}
