.login__section {
    padding: 80px 0;
    background: #fff url('img/bg-login-pattern.png') no-repeat center;
    background-size: cover;
}

.login__box {
    background: #fdf7f6;
    border: 2px dashed #cc8dc5;
    padding: 50px 40px;
    border-radius: 20px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(51, 14, 58, 0.1);
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.login__box h3 {
    font-size: 26px;
    font-weight: 700;
    color: #330e3a;
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login__box img {
    width: 70px;
    display: block;
    margin: 0 auto 25px;
}

.login__box input[type="text"],
.login__box input[type="password"] {
    width: 100%;
    padding: 12px 50px 12px 15px;
    border: 1px solid #d6b3da;
    border-radius: 10px;
    margin-bottom: 20px;
    background-color: #fffafc;
    font-size: 15px;
    transition: all 0.3s ease;
}

.login__box input:focus {
    border-color: #330e3a;
    box-shadow: 0 0 6px rgba(51, 14, 58, 0.3);
    outline: none;
}

.password-wrapper {
    position: relative;
}

.password-wrapper i {
    position: absolute;
    right: 15px;
    top: 12px;
    font-size: 16px;
    color: #330e3a;
    cursor: pointer;
}

.site-btn {
    width: 100%;
    padding: 12px;
    background: #330e3a;
    border: none;
    color: white;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s;
}

.site-btn:hover {
    background: #4a1b59;
}

.error-msg {
    color: red;
    font-size: 14px;
    margin-bottom: 15px;
    text-align: center;
}

.forgot-link {
    display: block;
    text-align: center;
    font-size: 13px;
    margin-top: 10px;
    color: #666;
}

.forgot-link:hover {
    text-decoration: underline;
}