﻿@import 'app.css?11';

form {
    width: 100%
}

form .invalid {
    border: 2px solid var(--red500);
}

form .input-wrapper, 
form .dropdown-wrapper {
    width: 100%;
    margin: 0px;
}
form .input-container {
    border-radius: 7px;
    background: var(--contrastColor50);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 6px;
    align-self: stretch;
}
form textarea, 
form input {
    padding: 16px;
    border: none;
    width: 100%;
    background: var(--contrastColor50);
    border-radius: 7px;
    /*outline: none;*/
}
form textarea:focus-visible {
    border: none;
}
::placeholder {
    color: var(--primary500);
    font-style: italic;
    font-family: 'Roboto';
}
.dropdown-wrapper input {
    padding: 16px;
    border: none;
    flex-grow: 1;
    background: none;
    outline: none;
}

.dropdown-wrapper .input-wrapper {
    width: 100%;
}

.dropdown-wrapper .input-container {
    border-radius: 7px;
    background: var(--contrastColor50);
    display: flex;
}

.dropdown-wrapper .listwrapper {
    display: flex;
}
.dropdown.list-wrapper{
    border-radius: 7px;
    background: var(--contrastColor50);
    display: flex;
}
.dropdown-button {
    width: 30px;
    cursor: pointer;
    margin: 14px;
}

.list-wrapper .list-item {
    padding: 16px;
}

.list-wrapper .list-item:nth-of-type(odd) {
    background-color: var(--primary50);
}

.list-wrapper .list-item:nth-of-type(even) {
    background-color: var(--contrastColor50);
}

.list-wrapper .list-item:last-child {
    border-radius: 0 0 14px 14px;
}

form label {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 400;
    font-size: clamp(0.1rem, 6vw, 1rem);
    line-height: 120%;
    margin-top: 12px;
    margin-bottom: 6px;
}

form label {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 400;
    font-size: clamp(0.1rem, 6vw, 1rem);
    line-height: 120%;
    margin-top: 16px
}
