.content-wrapper {
    display: flex;
    justify-content: center;
    /* centers horizontally */
    align-items: center;
    /* centers vertically */
    min-height: 100vh;
    /* makes it take full viewport height */
    text-align: center;
    /* centers text inside */
    flex-direction: column;
    /* stack children vertically */
    background-image: linear-gradient(180deg, rgb(216, 238, 255), rgb(254, 230, 230));
}

.form-label {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 1%;
}

input[type="text"] {
    height: 60px;
    text-align: center;
    font-size: 20px;
    border-radius: 8px;
    background-color: #e5e5e5;
    box-shadow: 5px 5px 8px 0px #ADADAD;
}

.chassis-info {
    font-size: 15px;
    margin-top: 1%;
}