/* password_reset.css */
.reset_main{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width:100%;
}


.reset-container h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.8em;
}

.reset-container form {
    max-width: 400px;
    width: 100%;
    padding: 20px;
    background-color: #f7f7f7;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    box-sizing: border-box;
}

button[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: #45a049;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .reset-container {
        padding: 10px;
    }

    .reset-container h2 {
        font-size: 1.5em;
    }

    .reset-container form {
        padding: 15px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .form-group input,
    button[type="submit"] {
        padding: 8px;
        font-size: 0.9em;
    }
}
