/* Glass Card - Ganti Password */

/* Background biru transparan */
.page-header {
    position: relative;
    overflow: hidden;
}

.custom-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(88, 110, 255, .30),
        rgba(88, 110, 255, .18)
    );
    backdrop-filter: blur(2px);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.card {
    background: #fff;
    border-radius: 24px;
    border: none;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .10);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
}

/* Header */
.card-header {
    background: transparent;
    border: none;
}

.card-header h5 {
    font-weight: 700;
}

/* Input */
.form-control {
    height: 54px;
    border-radius: 14px;
    border: 1px solid #dce3ec;
    background: #ffffff;
    box-shadow:
        inset 0 1px 2px rgba(255, 255, 255, .8),
        0 6px 18px rgba(0, 0, 0, .06);
    transition: .3s;
}

.form-control:focus {
    border-color: #5e72e4;
    box-shadow:
        0 0 0 .2rem rgba(94, 114, 228, .18),
        0 10px 25px rgba(94, 114, 228, .18);
}

/* Password */
.password-wrapper {
    position: relative;
}

.password-wrapper input {
    padding-right: 48px;
}

.toggle-eye {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #8d99ae;
    display: inline-flex;
    align-items: center;
    transition: .3s;
}

.toggle-eye:hover {
    color: #5e72e4;
    transform: translateY(-50%) scale(1.15);
}

/* Button */
.btn {
    height: 52px;
    border-radius: 14px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(94, 114, 228, .30);
    transition: .3s;
}

.btn:hover {
    transform: translateY(-2px);
}

.card {
    animation: zoom .6s ease;
}

@keyframes zoom {
    from {
        opacity: 0;
        transform: translateY(40px) scale(.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.btn-kirim {
    height: 52px;
    border: none;
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    background: linear-gradient(
        135deg,
        #6777ef,
        #5e72e4
    );
    box-shadow: 0 10px 25px rgba(94, 114, 228, .35);
    transition: .3s;
}

.btn-kirim:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(94, 114, 228, .45);
}

.btn-kirim:active {
    transform: scale(.98);
}