/* Login Page */
html, body {
    min-height: 100%;
}

.login-body{ 
    background: #f5f5f5;
    opacity: 0.8;
}
.login-box{
    text-align: center;
    position: absolute;
    min-width: 100%;
    min-height: 50%;
}
.box{
    position: absolute;
    min-width: 25%;
    max-width: 80%;
    background-color: #f5f5f5;
    border-radius: 25px;
    top: 50%;
}
.logo-akun{
    position: absolute;
    width: 150px;
    height:100px;
}
.f-title{
/* YAYASAN PENDIDIKAN DUA MEI */

    font-family: 'DM Serif Text';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0.065em;
    color: #000000;


}
.f-sec-title{
    /* PEMBAYARAN */
    font-family: 'DM Serif Text';
    font-style: normal;
    font-weight: 600;
    font-size: 10px;
    line-height: 14px;
    letter-spacing: 0.065em;

    color: rgba(0, 0, 0, 0.3);


}
.input-login{
    /* Rectangle 6 */

    box-sizing: border-box;
    background: rgba(155, 149, 149, 0.33);
    border: 1px solid rgba(155, 149, 149, 0.33);
    box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 9px;

}
.input-login::placeholder {
    color: rgb(49, 49, 49);
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 12px;
    display: flex;
    align-items: center;
    letter-spacing: 0.065em;

}

/* For WebKit browsers (Chrome, Safari, newer versions of Opera) */
.input-login::-webkit-input-placeholder {

    color: rgb(49, 49, 49);
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 12px;
    display: flex;
    align-items: center;
    letter-spacing: 0.065em;
}

.btn-login{
    /* Rectangle 8 */
    background: #F5795C;
    border: 1px solid rgba(155, 149, 149, 0.33);
    box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 9px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.065em;
}
.radio-btn {
    display: none;
    
}

.radio-btn-label {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 12px;
    display: inline-block;
    padding: 8px 20px;
    margin: 5px;
    border: 1px solid #ccc;
    border-radius: 5px !important;
    cursor: pointer;
    background-color: #f0f0f0;
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.radio-btn-label:hover {
    background-color: #ddd;
}

.radio-btn:checked + .radio-btn-label {
    background-color: #eb786e;
    color: white;
    border: 1px solid #eb786e;
}