﻿.form-container {
    align-self: center;
    height: 100%;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.form-div {
    margin-top: 10px;
    border-radius: 20px;
    box-shadow: 0px 10px 20px 1px #8f8f8f;
    height: auto;
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-child {
    margin-top: 20px;
}

.file-input-div {
    width: 75px;
    height: 75px;
}

.file-input-div-car {
    width: 80%;
    height: 150px;
}

form {
    display:flex;
    flex-direction: column;
    align-items: center;
}

.text-box {
    border-radius: 10px;
    border: 1px solid grey;
    padding: 6px;
    padding-left: 8px;
}

.text-box:focus {
    border: 2px solid black;
    outline: none;
}

.text-box:focus::placeholder {
    font-weight: bolder;
}

.submit-btn {
    background: none;
    border-radius: 20px;
    padding: 12px;
    border: 1px solid grey;
    color: black;
}

.submit-btn:hover {
    background: #d6d6d6;
}

.file-input {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
}