@import 'common.css';

body {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.container {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: clamp(2rem, 5vw, 4rem);
    width: 100%;
    max-width: 500px;
    text-align: center;
}

.title {
    margin-bottom: 3rem;
    font-size: 2.5rem;
    letter-spacing: -0.02em;
}

.selection-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-field {
    width: 100%;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.input-field:focus {
    border-color: var(--primary-color);
    background: rgba(16, 185, 129, 0.05);
}

select.input-field {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2310b981'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 1.25rem;
}

select.input-field option {
    background-color: #030303;
    color: #f8fafc;
    padding: 1rem;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1) brightness(1) sepia(1) saturate(5) hue-rotate(100deg);
    cursor: pointer;
}

.btn {
    margin-top: 1rem;
    width: 100%;
}

@media (max-width: 480px) {
    .container {
        padding: 2rem 1.5rem;
    }
    .title {
        font-size: 2rem;
    }
}
