.reset-form-container {
    width: 400px;
    margin: 60px auto;
    padding: 25px;
    background-color: #f7f7f7;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 8px;
    text-align: center;
}

.reset-form-container h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
}

.reset-form-container input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.reset-form-container button {
    width: 100%;
    padding: 12px;
    background-color: #28a745; /* Green to match your brand */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.reset-form-container button:hover {
    background-color: #218838;
}

.success-message {
    margin-top: 15px;
    color: #28a745;
    font-weight: bold;
}

.reset-form-container input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.text-danger {
    color: #dc3545;
    margin-top: 10px;
    font-size: 14px;
}
