/* Override autofill background and text color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px var(--200) inset !important; /* your background color */
  -webkit-text-fill-color: var(--text-dark) !important; /* your text color */
  transition: background-color 5000s ease-in-out 0s; /* prevents flashing */
}

/* Bot input */
.input-11 {
    width: 1px; height: 1px;
    position: absolute;
    left: -9999px;
}

/* ----------------------------------------------------------- FORMS */
.form {
    width: 100%;
    display: flex; flex-direction: column; align-items: center;
}

.form-input {
    width: 100%; height: 46px;
    background-color: var(--200);
    border: none;
    outline: none;
    color: var(--text-dark);
    font-family: var(--f-text);
    font-size: 14px;
    font-weight: 600;
    padding: 0px 10px;
    box-sizing: border-box;
    margin: 5px 0px 20px 0px
}

/* @username div and input */
.input-at-l {
    width: 30px; height: 46px;
    background-color: var(--200);
    padding: 0px 0px 0px 10px;
    box-sizing: border-box;
    margin: 5px 0px 20px 0px;
}
.input-at-r {
  width: calc(100% - 30px); height: 46px;
}
/* textarea height 2x, 3x... times 46px */
.form-textarea-s {
    width: 100%; height: 92px;
    background-color: var(--200);
    border: none;
    outline: none;
    color: var(--text-dark);
    font-family: var(--f-text);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 10px;
    box-sizing: border-box;
    margin: 5px 0px 20px 0px
}
.form-textarea-m {
    width: 100%; height: 138px;
    background-color: var(--200);
    border: none;
    outline: none;
    color: var(--text-dark);
    font-family: var(--f-text);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 10px;
    box-sizing: border-box;
    margin: 5px 0px 20px 0px
}
.form-textarea-xl {
    width: 100%; height: 276px;
    background-color: var(--200);
    border: none;
    outline: none;
    color: var(--text-dark);
    font-family: var(--f-text);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 10px;
    box-sizing: border-box;
    margin: 5px 0px 20px 0px
}


/* ----------------------- CHECKBOX */
.checkbox {
    width: 20px;
    height: 20px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    display: inline-block;
    border: 2px solid var(--text-dark);
    background-color: var(--100);
    border-radius: 4px;
    cursor: pointer;
}
/* simple checked state */
.checkbox:checked {
    background-color: var(--700);
    position: relative;
}

.checkbox:checked::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-light);
    font-size: 14px;
    font-weight: bold;
}

/* ----------------------- FILE UPLOAD */
.form-file-input {
    width: 100%;
    border: none;
    outline: none;
    color: var(--text-dark);
    font-family: var(--f-text);
    font-size: 14px;
    font-weight: 600;
    margin: 10px 0px 10px 0px;
}

/* Custom file input wrapper */
.file-input-wrap {
    width: 100%;
    display: flex; flex-direction: row; justify-content: left; align-items: center;
}

.file-input-hidden {
    display: none;
}

.bt-file-upload {
    width: 160px; height: 46px;
    border-radius: 23px;
    background-color: var(--700);
    border: 1px solid var(--700);
    color: var(--text-light);
    font-size: 14px;
    font-family: var(--f-text);
    text-align: center;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex; justify-content: center; align-items: center;
}
.bt-file-upload:hover {
    border: 1px solid var(--100);
}

.file-name {
    font-size: 14px;
    color: var(--text-dark);
    font-family: var(--f-text);
    font-weight: 600;
    margin: 0px 0px 10px 10px;
}

@media only screen and (max-width: 600px) {
    .file-input-wrap {
        display: flex; flex-direction: column; justify-content: left; align-items: center;
    }
}