.btn-ubah {
    background: linear-gradient(135deg, #f0932b 0%, #e67e22 100%);
    box-shadow: 0 10px 25px rgba(230, 126, 34, 0.4);
}
.btn-ubah:hover {
    box-shadow: 0 15px 35px rgba(230, 126, 34, 0.5);
}
.back-link {
    display: inline-block;
    margin-top: 20px;
    color: #7B8794;
    text-decoration: none;
    font-weight: 500;
}
.back-link:hover { text-decoration: underline; }

/* STYLE UNTUK TOMBOL LIHAT/SEMBUNYIKAN PASSWORD */
.input-wrapper {
    position: relative;
}
.toggle-password {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 20px;
    color: #7B8794;
    z-index: 10;
    user-select: none; /* Mencegah teks terblok */
}

/* Memberi ruang di dalam input untuk ikon mata */
input[type="password"],
input[type="text"] {
    /* Pastikan padding-right cukup besar */
    padding-right: 50px !important; 
}

/* Style untuk pesan error validasi */
.error-message {
    display: block; 
    color: #FF6B6B;
    font-size: 13px;
    margin-top: 5px;
    min-height: 18px;
    font-weight: 500;
}
/* Style untuk catatan kecil di bawah form */
.form-note {
    font-size: 13px;
    color: #7B8794;
    text-align: left;
    margin-top: 8px;
    margin-bottom: 15px;
}
