.container {
    width: 100%;
    max-width: 400px;
    margin: auto;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-container, .message-container {
    text-align: center;
}

.form-title {
    font-size: 24px;
    margin-bottom: 1rem;
    color: #333;
}

.form-description {
    margin-bottom: 2rem;
    font-size: 14px;
    color: #666;
}

form {
    margin-bottom: 1rem;
}

input[type="email"], input[type="password"] {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button[type="submit"], .btn-primary, .btn-secondary {
    width: 100%;
    padding: 0.75rem;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button[type="submit"]:hover, .btn-primary:hover {
    background-color: #0056b3;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-secondary:hover {
    background-color: #5a6268;
}