.input-container {
    position: relative;
}

.toggle-password {
    position: absolute;
    top: 68%;
    right: 0.5rem;
    transform: translateY(-32%);
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
}

.form-control {
    padding-right: 2.5rem;
}

#passwordFeedback {
    font-size: 0.77rem;
    color: red;
    /* Jarak dari input */
    margin-top: 0.5rem;
}

#passwordFeedback.strong {
    color: green;
}

.btn-beli {
    background-color: #FF6F61;
    border: none;
    border-radius: 20px;
    box-shadow: 0 7px 8px 0 rgba(0, 0, 0, 0.05);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-beli:hover {
    background-color: #FF5A4D;
    color: white;
    transition: 0.3s;
    font-weight: 700;
    transform: scale(1.05);
}

input.form-control:focus {
    border-color: #FF6F61 !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 111, 97, 0.25);
}

textarea.form-control:focus {
    border-color: #FF6F61 !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 111, 97, 0.25);
}

label,
.form-label {
    color: #6c757d;
}

a.text-center.mx-auto.d-block {
    color: #FF6F61;
}