/* =================== */
/* FULL MOBILE LOGIN UI */
/* =================== */
body {
    margin: 0;
    padding: 0;
    height: 100vh;     /* fallback untuk editor / browser lama */
    height: 100dvh;    /* dipakai oleh HP modern */
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    overflow: auto;
}

.login-wrapper {
    max-width: 420px;
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    text-align: center;
    max-height: 100%;
    overflow: auto;
}

.login-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.login-logo img {
    width: 110px;
    height: 110px;
    object-fit: contain;
}

.form-group {
    width: 100%;
    margin-bottom: 15px;
    display: block;
}

.input-field {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    transition: 0.2s;
    box-sizing: border-box;
}

.input-field:focus {
    border-color: #ff5a00;
    box-shadow: 0 0 3px rgba(255, 90, 0, 0.4);
}

.password-group {
    position: relative;
}

.toggle-pass {
    position: absolute;
    right: 45px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
}

.forgot-link {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #007bff;
    text-decoration: none;
}

.btn-login {
    width: 100%;
    padding: 14px;
    background: #11b4ae;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    margin-top: 10px;
    cursor: pointer;
}

.btn-login:active {
    opacity: 0.7;
}

.login-phone {
    display: block;
    margin: 12px 0;
    font-size: 14px;
    color: #007bff;
    text-decoration: none;
}

.divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #ddd;
}

.divider span {
    margin: 0 10px;
    color: #888;
    font-size: 14px;
}

.btn-social {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
    margin-bottom: 10px;
    background: #fff;
    cursor: pointer;
}

.google {
    border-color: #db4437;
}

.register-text {
    margin-top: 20px;
    font-size: 14px;
}

.register-text a {
    color: #007bff;
    font-weight: bold;
}