/* Login Page Custom Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.container-fluid, #main-wrapper {
    padding: 0 !important;
    margin: 0 !important;
}

.login-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
}

.login-left {
    flex: 1.2;
    background-image: url('../images/backgrounds/persuratan-pict.png');
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: 0% center; 
    background-color: #ffffff;
    position: relative;
    margin: 0;
    padding: 0;
}

.login-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 40px;
}

.login-card {
    width: 100%;
    max-width: 450px;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.logo-container {
    margin-bottom: 20px;
}

.logo-container img {
    max-width: 120px;
    height: auto;
}

.login-title {
    color: #208EB1;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.login-subtitle {
    color: #888;
    font-size: 16px;
    margin-bottom: 30px;
}

.form-group {
    text-align: left;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #f9f9f9;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #208EB1;
    outline: none;
    background-color: #fff;
}

.password-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-login {
    width: 100%;
    padding: 12px;
    background-color: #208EB1;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.btn-login:hover {
    background-color: #1a7491;
}

.login-links {
    margin-top: 25px;
}

.login-links a {
    display: block;
    color: #208EB1;
    text-decoration: none;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 500;
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
    .login-left {
        display: none;
    }

    .login-right {
        flex: 1;
    }
}

/* Responsive Adjustments for 1440px */
@media (min-width: 1440px) {
    .login-left {
        flex: 1.3;
        background-position: 0% center;
    }

    .login-card {
        max-width: 500px;
        padding: 50px;
    }
}

/* Responsive Adjustments for 1920px */
@media (min-width: 1920px) {
    .login-left {
        flex: 1.5;
        background-position: 0% center;
        background-size: cover;
    }

    .login-card {
        max-width: 600px;
        padding: 60px;
    }

    .login-title {
        font-size: 48px;
    }

    .login-subtitle {
        font-size: 20px;
    }
}