.reset_form_container {
    max-width: 400px;
    margin: 50px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.reset_form_container h2 {
    margin-bottom: 10px;
    color: #333;
}

.reset_form_container p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* Input Styling */
.reset_form_container input[type="email"],
.reset_form_container input[type="password"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
}

/* Primary Button */
.reset_form_container button {
    width: 100%;
    padding: 12px;
    background-color: #4A90E2;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background 0.3s ease;
}

.reset_form_container button:hover {
    background-color: #357ABD;
}

/* Feedback Boxes */
.reset_error_box {
    background-color: #fee2e2;
    color: #b91c1c;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #fecaca;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.reset_success_box {
    background-color: #dcfce7;
    color: #15803d;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #bbf7d0;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

/* Back link */
.reset_form_container a {
    display: inline-block;
    margin-top: 15px;
    color: #4A90E2;
    text-decoration: none;
    font-size: 0.85rem;
}

.reset_form_container a:hover {
    text-decoration: underline;
}