body {
    font-family: Segoe UI, sans-serif;
}

.main-content-wrap{
    background: linear-gradient(180deg, #2149a6, #0e2a66);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.login-container {
    width: 320px;
}

.logo {
    text-align: center;
    margin-bottom: 5px;
}

.logo img {
    width: 170px;
}

.card-login {
    background: #e5e5e5;
    padding: 12px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.login-title {
    text-align: center;
    font-weight: 500;
    font-size: 22px;
    color: #2046a2;
    margin-bottom: 10px;
}

.form-control {
    border-radius: 4px;
    padding: 8px 12px;
}

.input-icon {
    position: absolute;
    top: 6px;
    right: 12px;
    font-size: 18px;
    color: #000;
}

.btn-login {
    background: #2b4fa5;
    color: #fff;
    font-weight: 600;
}
.btn-login:disabled{
      background: #2b4fa5;
    color: #fff;
    font-weight: 600;
}

/* .btn-login:hover {
    background: #1f3c8a;
} */

.btn-apk {
    background: #2fa844;
    color: #fff;
    font-weight: 600;
}

.small-text {
    font-size: 12px;
    text-align: center;
    margin-top: 10px;
}

.email {
    text-align: center;
    font-size: 13px;
    margin-top: 5px;
}

.whatsapp {
    margin-top: 15px;
    font-size: 13px;
    text-align: center;
}

.whatsapp i {
    color: #25D366;
}

.disclaimer {
    color: #fff;
    font-size: 12px;
    margin-top: 15px;
    text-align: center;
    max-width: 380px;
}


.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 25px;
    right: 25px;
    background: #fff;
    color: #1dc45a;
    border-radius: 16px;
    text-align: center;
    font-size: 32px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: 0.3s;
}

.whatsapp-float:hover {
    background: #1ebe5d;
    color: white;
    transform: scale(1.08);
}