/* Layout General Reset Password */
body {
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.reset-container {
    background: #ffffff;
    min-height: 100vh;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

/* Header Navbar Top */
.reset-header {
    display: flex;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid #eeeeee;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 10;
}

.reset-header .back-btn {
    font-size: 22px;
    color: #03c71d; /* Warna panah oranye khas marketplace */
    text-decoration: none;
    margin-right: 18px;
    line-height: 1;
    font-weight: 300;
}

.reset-header h2 {
    font-size: 17px;
    font-weight: 500;
    color: #333333;
    margin: 0;
}

/* Content Area */
.reset-content {
    padding: 24px 16px;
}

/* Input Field Group */
.input-group-field {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    padding: 12px 0;
    margin-top: 10px;
    margin-bottom: 24px;
    transition: border-color 0.2s;
}

.input-group-field:focus-within {
    border-bottom-color: #008a43;
}

.field-icon {
    font-size: 20px;
    color: #888888;
    margin-right: 14px;
    display: flex;
    align-items: center;
}

.input-group-field input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    color: #333333;
    background: transparent;
    padding: 0;
}

.input-group-field input::placeholder {
    color: #cccccc;
}

/* Tombol Selanjutnya */
.btn-selanjutnya {
    width: 100%;
    background-color: #e0e0e0; /* Abu-abu pas awal kosongan */
    color: #a0a0a0;
    border: none;
    padding: 12px 0;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    cursor: not-allowed;
    transition: all 0.2s ease;
}

/* State Tombol Selanjutnya saat Aktif */
.btn-selanjutnya.active {
    background-color: #008a43; /* Hijau HalalGo */
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0, 138, 67, 0.25);
}

.btn-selanjutnya.active:active {
    background-color: #006e35;
}

/* Style Alert Message */
.alert {
    padding: 12px 14px;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 16px;
}

.alert-success {
    background-color: #e6f4ea;
    color: #137333;
    border: 1px solid #ceead6;
}

.alert-danger {
    background-color: #fce8e6;
    color: #c5221f;
    border: 1px solid #fad2cf;
}