/* Login Page Wrapper (match account-page spacing) */
.login-section {
    padding-top: 120px;
    padding-bottom: 80px;
    background: #fff;
}

/* Center the login card */
.login-part {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    padding: 45px 35px;
    border-radius: 32px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

/* Title styling */
.login-part .title_style {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: #111;
}

/* Form groups */
.login-form .form-group {
    margin-bottom: 20px;
}

/* Labels */
.login-form label {
    position: static !important;
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #888;
    font-size: 0.9rem;
}

/* Inputs */
.login-form .form-control {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #eee;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.login-form .form-control:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

/* Button */
.login-form .btn-primary {
    width: 100%;
    padding: 12px;
    border-radius: 20px;
    background: #111;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
    justify-content: center;
    margin-top: 15px;
}

.login-form .btn-primary:hover {
    cursor: pointer;
    background: #26384b;
}

/* Links */
.login-part a {
    color: #007bff;
    text-decoration: none;
    font-size: 0.9rem;
}

.login-part a:hover {
    text-decoration: underline;
}

/* Messages / alerts */
.alert {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

/* Google login */
#login-btn {
    display: inline-block;
    margin-top: 10px;
    transition: transform 0.2s ease;
}

#login-btn:hover {
    transform: scale(1.05);
}

#google-icon {
    width: 32px;
    height: auto;
    padding-bottom: 18px;
}

#login-with-google{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .login {
        padding-top: 100px;
    }

    .login-part {
        margin: 0 15px;
        padding: 25px;
        border-radius: 24px;
    }

    .login-part .title_style {
        font-size: 1.5rem;
    }
}