/* Login Page Styles */

.login-template {
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

.login-form-section {
    padding: 120px 0;
    position: relative;
    background: url('../images/registration-bg.png') no-repeat center center/cover;
    background-attachment: fixed;
}

.login-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(11, 24, 48, 0.7) 100%);
    z-index: 1;
}

.login-form-section .container-1200 {
    position: relative;
    z-index: 2;
}

.login-wrapper {
    display: flex;
    gap: 80px;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.login-info {
    flex: 1 1 400px;
}

.login-form-container {
    flex: 1 1 450px;
}

.login-info .subtitle {
    display: inline-block;
    color: #3b82f6;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.login-info h2 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
}

.login-info p {
    font-size: 1.1rem;
    color: #999;
    line-height: 1.6;
    margin-bottom: 40px;
}

.login-features {
    display: flex;
    gap: 30px;
}

.login-feature-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 180px;
}

.login-feature-item i {
    font-size: 2rem;
    color: #3b82f6;
}

.login-feature-item span {
    font-weight: 700;
    font-size: 0.9rem;
}

/* Login Card */
.login-card {
    background: linear-gradient(145deg, rgba(11, 24, 48, 0.9) 0%, rgba(28, 130, 197, 0.8) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 60px 50px;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.7);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
}

.form-header p {
    color: #bbb;
}

.log-form .form-group {
    margin-bottom: 25px;
}

.log-form label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #ddd;
}

.log-form input[type="text"],
.log-form input[type="email"],
.log-form input[type="password"] {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 18px 25px;
    color: #fff;
    transition: all 0.3s ease;
}

.log-form input:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.password-input-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #777;
    cursor: pointer;
    font-size: 1.1rem;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #bbb;
}

.remember-me input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    cursor: pointer;
}

.forgot-pass {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
}

.btn-login-submit {
    width: 100%;
    background: linear-gradient(90deg, #3b82f6, #9333ea);
    color: #fff;
    border: none;
    border-radius: 15px;
    padding: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-login-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
}

.social-login {
    margin-top: 40px;
    text-align: center;
    position: relative;
}

.social-login p {
    position: relative;
    z-index: 1;
    background: #0b1830;
    display: inline-block;
    padding: 0 15px;
    color: #777;
    font-size: 0.85rem;
    margin-bottom: 25px;
}

.social-login::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.social-buttons {
    display: flex;
    gap: 15px;
}

.social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.form-footer {
    text-align: center;
    margin-top: 40px;
    color: #999;
}

.form-footer a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 768px) {
    .login-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .login-info h2 {
        font-size: 2.8rem;
    }
    
    .login-features {
        justify-content: center;
    }
    
    .login-card {
        padding: 40px 25px;
    }
}
