body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #084e83;
    font-family: Arial, sans-serif;
    margin: 0;
}

.login-card {
    width: 90%;
    max-width: 400px; /* Batas maksimal lebar card */
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

.login-content img {
    width: 100%; 
    height: auto; 
    max-width: 800px; 
}


h3 {
    margin-bottom: 20px;
}

.form-container {
    width: 100%;
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 20px;
    font-size: 14px;
}

.form-label{
    font-weight: bold;
}

.password-wrapper {
    position: relative;
}

.icon-mata {
    position: absolute;
    right: 4%; 
    top:  73%; 
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 14px;
    color: #888;
}


.icon-eyes{
    position: absolute;
    right: 4%; 
    top: 58%; 
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 14px;
    color: #888;
}


.btn-login {
    width: 100%;
    padding: 10px;
    background-color: #084e83;
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
}

.btn-login:hover {
    background-color: #0a65a8;
}

@media (max-width: 767px) {
    .login-card {
        width: 90%;
        max-width: 300px;
    }


    .form-control {
        font-size: 14px;
        padding: 8px;
    }

    .btn-login {
        font-size: 14px;
        padding: 8px;
    }

    .icon-mata{
        right: 4%; 
        top: 73%; 
    }


}

@media (min-width: 768px) and (max-width: 834px) {
    .form-control {
        font-size: 12px;
        padding: 15px;
    }

    .login-content img {
        width: 90%; 
        height: auto;
    }
}
    
    .icon-mata {
        right: 4%; 
        top: 70%;
    }

    .icon-eyes{
        right: 4%; 
        top: 60%; 
    }

    .btn-login {
        font-size: 14px;
        padding: 8px;
    }


html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
}

.main-content{
    margin-bottom: 100px;
}