/* Shared Form Styles */
.form-container {
max-width: 400px;
margin: 2rem auto;
padding: 2rem;
background-color: #f9f9f9;
border: 1px solid #ddd;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.form-container h2 {
text-align: center;
margin-bottom: 1.5rem;
color: #333;
}
.form-group {
margin-bottom: 1rem;
}
.form-group label {
display: block;
margin-bottom: 0.5rem;
color: #555;
}
.form-group input {
width: 100%;
padding: 0.75rem;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
.form-group input:focus {
border-color: #007bff;
outline: none;
box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}
.form-actions {
margin-top: 1.5rem;
text-align: center;
}
.form-actions button {
width: 100%;
padding: 0.75rem;
background-color: #007bff;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 1rem;
}
.form-actions button:hover {
background-color: #0056b3;
}
.form-links {
margin-top: 1rem;
text-align: center;
}
.form-links a {
color: #007bff;
text-decoration: none;
}
.form-links a:hover {
text-decoration: underline;
}