/* main/static/main/css/main.css */
body {
    font-family: sans-serif;
    padding: 20px;
    background-color: #f9f9f9;
}
h1 {
    color: #333;
}

.verify-form {
    display: flex;
    flex-direction: column;
    max-width: 300px;
}

.verify-form input {
    margin-bottom: 10px;
    padding: 8px;
}

.verify-form button {
    background: #27ae60;
    color: #fff;
    padding: 10px;
    border: none;
    cursor: pointer;
}

.verify-form button:hover {
    background: #2ecc71;
}

.success {
    color: green;
}

.error {
    color: red;
}

.messages {
    width: 100%;
    max-width: 1100px;
    margin: 10px auto;
}

.message {
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 5px;
    text-align: center;
}

.message.success {
    background-color: #2ecc71;
    color: white;
}

.message.error {
    background-color: #e74c3c;
    color: white;
}
