@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, #e0eafc, #cfdef3);
    color: #333;
}

.app-container {
    text-align: center;
    max-width: 800px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1 {
    color: #007BFF;
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 700;
}

.subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.field-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 20px;
    width: 100%;
}

.field {
    display: flex;
    flex-direction: column;
    width: 100%;
}

label {
    font-weight: bold;
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

input, select {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 18px;
    box-sizing: border-box;
    text-align: left;
    outline: none;
    background-color: #f9f9f9;
    color: #333;
    transition: all 0.3s ease;
}

input[type="time"] {
    text-align: left;
}

select {
    text-align: left;
    text-align-last: left;
    cursor: pointer;
}

input:focus, select:focus {
    border-color: #007BFF;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.2);
}

@media (max-width: 768px) {
    .field-container {
        flex-direction: column;
        align-items: center;
    }

    .field {
        width: 100%;
        margin-bottom: 20px;
    }

    input, select {
        font-size: 16px;
    }
}
