/* Premium Login Aesthetic for Koperasi Desa Merah Putih */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

body.login-page {
    font-family: 'Outfit', sans-serif;
    background: #f4f7f6;
}

.wrapper-login-full {
    height: 100vh;
    display: flex;
    overflow: hidden;
}

.login-aside-left {
    width: 55%;
    background-color: #fff;
    background-image: url('../bg-login-kopdes.jpeg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 40px;
    overflow: hidden;
}

.login-aside-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.2) 0%, rgba(183, 28, 28, 0.3) 100%);
    z-index: 0;
}

.login-aside-left .content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.login-aside-right {
    width: 45%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.login-card {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.login-card .logo-container {
    text-align: center;
    margin-bottom: 30px;
}

.login-card .logo-container img {
    height: 120px;
    width: auto;
    margin-bottom: 15px;
    object-fit: contain;
}

.login-card h2 {
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.login-card p {
    color: #777;
    margin-bottom: 30px;
}

.form-group-custom {
    margin-bottom: 20px;
}

.form-group-custom label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #444;
}

.form-control-custom {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-control-custom:focus {
    border-color: #d32f2f;
    box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.1);
}

.btn-login-custom {
    width: 100%;
    padding: 14px;
    background: #d32f2f;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
    margin-top: 10px;
}

.btn-login-custom:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

.btn-login-custom:active {
    transform: translateY(0);
}

.show-password-custom {
    position: absolute;
    right: 15px;
    top: 38px;
    cursor: pointer;
    color: #999;
}

@media (max-width: 992px) {
    .login-aside-left {
        display: none;
    }
    .login-aside-right {
        width: 100%;
    }
}
