/* ========================================== */
/* CSS FORM DAFTAR */
/* ========================================== */

#register-page {
    max-width: 420px;
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    text-align: center;
    max-height: 100%;
    margin-top: -10px;
}



.register-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 20px;
}

.register-logo img {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.judul-daftar {
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: -15px;
    color: #333;
}

.form-group-register {
    width: 100%;
    margin-bottom: 10px;
}

#register-page input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    transition: 0.2s;
    box-sizing: border-box;
}

#register-page input:focus {
    border-color: #ff5a00;
    box-shadow: 0 0 3px rgba(255, 90, 0, 0.4);
}

#btn-register {
    width: 100%;
    padding: 12px;
    background: blue;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    cursor: pointer;
    margin-top: 5px;
}
#btn-register:active {
    opacity: 0.7;
}

.akun-daftar {
    margin-top: 18px;
    font-size: 14px;
    color: #555;
}

.akun-daftar span {
    color: #007bff;
    cursor: pointer;
    font-weight: bold;
}



