.password-reset-container {
    max-width: 500px;
    margin: 40px auto;
    padding: 20px;
}

.form-title {
    font-size: 24px;
    margin-bottom: 20px;
}

.form-instruction {
    font-size: 16px;
    margin-bottom: 10px;
}

.password-reset-form {
    display: block;
}

.password-reset-form input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0 20px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.form-submit {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: #0056b3;
}

.invalid-link-message {
    color: #a94442;
    background-color: #f2dede;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
}
