/* styles.css */
body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #333;
}

.container {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    text-align: center;
}

h1 {
    margin-bottom: 20px;
    color: #007bff;
}

.form-group {
    margin-bottom: 16px;
    text-align: left;
}

form label {
    display: block;
    margin-bottom: 8px;
}

form input,
form select {
    width: 100%;
    padding: 8px;
    margin-bottom: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    width: 100%;
    padding: 10px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

button:hover {
    background: #0056b3;
}

.loading {
    text-align: center;
}

.result {
    text-align: center;
}

.result h2 {
    color: #28a745;
    margin-bottom: 20px;
}

.result p {
    margin-bottom: 16px;
}

.result button {
    background: #25d366;
}

.result button:hover {
    background: #128c7e;
}
