.reset-container {
    width: 100%;
    max-width: 340px;
    margin: 100px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    /* text-align: center; */
    height: 380px;
}

p {
    font-size: 14px;
    color: black;
    margin-top: 20px;
    margin-bottom: 30px;
}

.status-message {
    color: green;
    margin-bottom: 10px;
}

.reset-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.input-field {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.submit-button {
    background: red;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 30px;
}

.back-btn {
    display: inline-block;
    padding: 10px 10px;
    font-size: 16px;
    color: white;
    background-color: #007BFF; /* Warna tombol */
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease-in-out;
}

.back-btn:hover {
    background-color: #339CFF;
    color: #ffffff;
    border: 1px solid #007BFF;
}

.back-btn:active {
    background-color: #006AE0;
    color: #ffffff;
    border: 1px solid #005FCC;
}

.back-btn:focus {
    background-color: #007BFF;
    color: #ffffff;
    border: 1px solid #005FCC;
}

.back-btn:disabled {
    background-color: #D6E4F5;
    color: #B0B0B0;
    border: 1px solid #A6C2E3;
}

.submit-button:hover {
    background: darkred;
}
