input::placeholder{
    font-size: 14px;
}

.create-car__img-input{
    height: 100%;
    width: 100%;

    display: flex;

    justify-content: center;
    align-items: center;

    background-color: white;

    transition: all 0.3s;

    cursor: pointer;
}

.validation-message{
    margin: 1rem 0;
    margin-left: 2rem;
    margin-top: 1rem;

    font-size: 1.4rem;
}


.img-input__wrapper{
    flex: 1;

    height: 100%;

    margin-top: 0;
}

.select-input__wrapper{
    display: flex;

    flex-direction: column;

    width: 100%;

    padding: 1rem;

    position: relative;

    padding-top: 1.25rem;
}

.select-input__wrapper span{
    padding-left: 0.3rem;
    padding-bottom: 0.2rem;

    font-size: 1.4rem;
}

.select-input__delete{
    position: absolute;

    top: 1.35rem;
    right: 1.5rem;

    cursor: pointer;
}

.select-input__wrapper select{
    height: 3rem;

    cursor: pointer;

    padding-left: 1rem;
    border:none;
}

.create-car__img-input:hover{
    background-color: rgb(240, 240, 240);
}

.camera-logo{
    margin-right: 1rem;
}

.create-car__img-input i{
    font-size: 2rem;
}

.label-input__wrapper{
    display: flex;

    flex-direction: column;

    justify-content: center;
    align-items: flex-start;

    font-size: 1.4rem;

    color: black;

    padding: 1rem;

    flex: 1;
}

.label-input__wrapper input{
    width: 100%;
    height: 3rem;
    padding-left: 1rem;
    border: none;
}

.label-input__wrapper span{
    padding-left: 0.3rem;
    padding-bottom: 0.2rem;
}

.datalist-input__wrapper{
    border-radius: 6px;
    display: flex;

    flex: 1;

    flex-direction: column;

    justify-content: center;
    align-items: flex-start;

    padding: 0 1rem;

    font-size: 1.4rem;

    color: black;

    margin: 1rem 0;
}

.datalist-input__wrapper input{
    width: 100%;
    height: 3rem;

    border: none;

    padding-left: 1rem;
}

.datalist-input__wrapper span{
    padding-left: 0.3rem;
    padding-bottom: 0.2rem;
}

.date-input__wrapper{
    padding: 1rem;

    flex: 1;

    display: flex;

    flex-direction: column;

    justify-content: center;    
    align-items: flex-start;

    font-size: 1.4rem;

    color: black;
}

.date-input__wrapper--horizontal {
    flex-direction: inherit;
    align-items: center;
}

.date-input__wrapper .date-input__span {
    padding-left: 0.3rem;
    padding-bottom: 0.2rem;
}

.date-input__wrapper .date-input__label--tall {
    height: 4rem;
}

.date-input__wrapper .date-input__span--tall {
    padding-right: 1rem;
    padding-left: 1rem;
    align-self: center;
}

.date-input__wrapper label {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 3rem;
    width: 100%;
    cursor: pointer;
    background-color: white;
    padding-right: 1rem;
}

.date-input{
    width: 3rem;
    height: 100%;

    display: flex;

    justify-content: center;
    align-items: center;

    background-color: rgb(200, 200, 200);
}

.date-input__wrapper input{
    outline: none;
    border: none;

    margin-left: 1rem;

    width: 100%;

    cursor: pointer;

    font-family: arial, sans-serif;
}

.checkbox__wrapper {
    padding: 1rem;

    flex: 1;

    width: 100%;

    display: flex;

    justify-content: center;
    align-items: flex-end;
}

.checkbox-input {
    display: flex;

    flex-direction: column;

    background-color: rgb(240, 240, 240);
    border: 2px solid rgb(240, 240, 240);

    padding-left: 1rem;

    justify-content: center;
    align-items: center;
    color: black;

    width: 100%;

    cursor: pointer;

    font-size: 1.4rem;

    height: fit-content !important;
}

.input__top {
    display: flex;

    justify-content: space-between;
    align-items: center;

    max-height: 3rem;
    width: 100%;
}

.input__bottom{
    font-size: 1.4rem;
}

    .checkbox-input i {
        margin-top: 1.5rem;
    }

.checkbox-input__label {
    font-size: 1.4rem;    
}

.checkbox-input__checkbox{
    height: 3rem;
    width: 3rem;

    border: 1px solid rgb(140, 140, 140);

    display: flex;

    justify-content: center;
    align-items: center;

    background-color: white;
}

.checkbox-input__check {
    color: green;
    font-size: 2rem;
    padding: 0;
    padding-bottom: 1.3rem;
    display: none;
}

.checkbox-input input[type="checkbox"]{
    display:none; 
}

    .checkbox-input input[type="checkbox"]:checked ~ .checkbox-input__check {
        display: block;
    }

.textarea__wrapper{
    flex: 1;

    padding: 1rem;

    font-size: 1.4rem;

    color: black;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: flex-start;
}

.textarea__wrapper textarea{
    height: 100%;
    width: 100%;

    font-family: inherit;

    padding: 1rem;

    resize: none;

    border: none;
}

.textarea__wrapper span{
    padding-left: 0.3rem;
    padding-bottom: 0.2rem;
}