/* aes_demo.css */

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f9fa;
    margin: 20px;
    color: #333;
}

h2 {
    color: #007bff;
    margin-top: 30px;
}

label {
    font-weight: 500;
    display: block;
    margin-top: 15px;
}

textarea, input[type="text"], select {
    width: 100%;
    max-width: 600px;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 14px;
}

textarea {
    height: 100px;
    resize: vertical;
}

button {
    margin-top: 15px;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

.container {
    max-width: 800px;
    margin: auto;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
