.forms{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 500px;
}

[data-readonly] input{
    user-select: none;
}

.title-section{
    margin: 0 0 30px 0;
}

.input-and-input-name-containers{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.warning{
    color: crimson;
    font-weight: 800;
}

.input-names{
    font-family: var(--main-font);
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin: 0 0 0 8px;
    color: var(--font-color);
}

.input-and-input-icon-containers{
    width: 100%;
    height: 50px;
    background: var(--fill-1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}
.input-icon, .long-input-icon{
    pointer-events: none;
}
.input-icon{
    font-size: 14px;
    color: var(--light-grey);
    line-height: 0%;
    height: 100%;
    aspect-ratio: 1/1;
    display: flex;
    position: absolute;
    left: 0;
    justify-content: center;
    align-items: center;
}
.input-icon-end{
    font-size: 14px;
    color: var(--light-grey);
    line-height: 0%;
    height: 100%;
    aspect-ratio: 1/1;
    display: flex;
    position: absolute;
    right: 0;
    justify-content: center;
    align-items: center;
}
.real-input-inside-fake-input{
    appearance: none !important;
    height: 100%;
    width: 100%;
    color: var(--light-grey);
    font-family: var(--main-font);
    padding: 0 10px 0 50px;
    font-size: var(--main-font-size);
    background: none;
    overflow: visible;
    background: transparent !important;
}
.input-and-input-icon-containers:has(.input-icon-end) .real-input-inside-fake-input{
    padding: 0 50px;
}
.real-input-inside-fake-input::placeholder{
    color: lightgray;
}

input:is(:-webkit-autofill, :autofill){
    color: red !important;
}

input:autofill,
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active{
    background: none !important;
    background-color: none !important;
    background-image: none !important;
    color: var(--light-grey) !important;
    -webkit-box-shadow: 0 0 0px 1000px var(--fill-1) inset !important; /* Change 'white' to your desired background color */
    -webkit-text-fill-color: var(--light-grey) !important; /* Change '#333' to your desired text color */
}

.long-input-and-long-input-icon-containers{
    width: 100%;
    height: 200px;
    position: relative;
    background: var(--fill-1);
    border-radius: 10px;
    display: flex;
    overflow: visible;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}
.long-input-icon{
    display: flex;
    width: 50px;
    height: 100%;
    position: absolute;
    line-height: 0%;
    left: 0;
    top:0;
    color: var(--light-grey);
    padding-top:21px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.real-long-inputs-inside-fake-long-inputs{
    appearance: none !important;
    background:transparent !important;
    height: 100%;
    width: 100%;
    font-size: var(--main-font-size);
    resize: none !important;
    padding: 20px 50px;
    font-family: var(--main-font);
    color: var(--light-grey);
    word-break: break-word;
    word-wrap: break-word;
}
.real-long-inputs-inside-fake-long-inputs::placeholder{
    color: lightgray;
    text-align: justify;
}

.input-warnings{
    display: none;
    font-weight: 600;
    font-size: 13px;
    color: orange;
}

.form-indent{
    margin: 0 0 0 8px;
}

select option{
    appearance: none !important;
    color: #000;
    cursor: pointer !important;
}
select option[disabled]{ 
    color: var(--font-color-inverse);
    font-family: var(--mainfont);
    text-decoration: line-through !important;
    font-weight: 300;
}

/* makes the space between the last input and the submit button a little larger than inputs between inputs (which is set at 20px) */
.submit-buttons{
    margin-top: 15px;
}