/* static/css/new_login_page.css */

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    height: 100%;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #1a2a3a;
    background-image: linear-gradient(rgba(10, 20, 30, 0.7), rgba(10, 20, 30, 0.9)), url('../images/stadium_bg.png');
    background-size: cover;
    background-position: center;
    padding: 20px;
    box-sizing: border-box;
}

.login-card {
    width: 100%;
    max-width: 400px;
    text-align: center;
    color: white;
}

.login-header {
    margin-bottom: 30px;
}
.login-header img {
    max-width: 200px;
    margin-bottom: 5px;
}
.login-header p {
    margin: 0;
    color: #a0b3c6;
    font-size: 0.9em;
}

.welcome-text h1 {
    font-size: 2.2em;
    margin: 0;
}
.welcome-text p {
    font-size: 1em;
    color: #a0b3c6;
    margin-top: 5px;
    margin-bottom: 30px;
}

.social-logins {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}
.social-btn:hover {
    opacity: 0.9;
}
.google-btn {
    background-color: #ffffff;
    color: #333;
}
.facebook-btn {
    background-color: #1877F2;
    color: white;
}
.social-btn i {
    font-size: 1.2em;
}

.divider {
    margin: 25px 0;
    color: #a0b3c6;
    display: flex;
    align-items: center;
    gap: 15px;
}
.divider::before, .divider::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background-color: #4a5c6d;
}

.login-form input {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #4a5c6d;
    border-radius: 8px;
    background-color: transparent;
    color: white;
    font-size: 1em;
    box-sizing: border-box;
}
.login-form input::placeholder { color: #a0b3c6; }
.login-form input:focus {
    outline: none;
    border-color: #00A86B;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9em;
    color: #a0b3c6;
}
.form-options label {
    display: flex;
    align-items: center;
    gap: 5px;
}
.form-options a {
    color: #a0b3c6;
    text-decoration: none;
}
.form-options a:hover {
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    padding: 14px;
    margin-top: 20px;
    border: none;
    border-radius: 8px;
    background-color: #00A86B;
    color: white;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
}

.signup-link {
    margin-top: 30px;
    color: #a0b3c6;
}
.signup-link a {
    color: #ffd700;
    font-weight: 600;
    text-decoration: none;
}
.error-message {
    color: #e74c3c;
    margin-bottom: 15px;
    font-size: 0.9em;
}




.signup-link a {
    color: #ffd700; /* सुनहरा रंग */
}

/* पासवर्ड की आवश्यकताओं की सूची के लिए */
.help-text-container {
    font-size: 0.8em;
    color: #a0b3c6;
    text-align: left;
    margin: -10px 0 15px 5px;
}
.help-text-container ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}