/* request_reset.css */
body {
    font-family: "Inter", sans-serif;
    max-width: 450px;
    margin: 40px auto;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.box {
    border: 1px solid #ddd;
    padding: 30px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

h2 {
    margin-top: 0;
    font-size: 1.5rem;
    color: #444;
}

p {
    font-size: 0.9rem;
    color: #666;
}

.message {
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
}

input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 12px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s;
}

button:hover {
    background: #0056b3;
}

.footer-link {
    text-align: center;
    margin-top: 20px;
    font-size: 0.85rem;
}

.footer-link a {
    color: #007bff;
    text-decoration: none;
}