/* Center the form and style the card */
.reset-confirm-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f9fafb;
}

.reset-confirm-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.reset-confirm-box {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.reset-confirm-box h2 {
    margin-bottom: 25px;
    font-size: 24px;
    color: #333;
}

.reset-confirm-box .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.reset-confirm-box label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

/* .reset-confirm-box input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.reset-confirm-box input[type="password"]:focus {
    border-color: #fbbf24;
} */

/* Password wrapper for eye icon */
.reset-confirm-box .password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.reset-confirm-box .password-wrapper input {
    width: 100%;
    padding: 12px 45px 12px 15px; /* right padding for icon */
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.reset-confirm-box .password-wrapper input:focus {
    border-color: #fbbf24;
    box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.2);
}

/* Eye icon */
.reset-confirm-box .toggle-password {
    position: absolute;
    right: 15px;
    cursor: pointer;
    color: #777;
    font-size: 16px;
    transition: 0.3s ease;
}

.reset-confirm-box .toggle-password:hover {
    color: #fbbf24;
}

.reset-confirm-box .btn-reset {
    width: 100%;
    padding: 14px 0;
    background-color: #fbbf24;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.reset-confirm-box .btn-reset:hover {
    background-color: #e6ac00;
}