.form {
    display: flex;
    flex-direction: column;
    gap: 8px;

    border-radius: 10px;
    padding: 20px;
   
    box-shadow: 4px 4px 24px 0 rgba(0, 0, 0, 0.55);

    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.form .title{
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
}
.form-label {
    display: inline-block;
    width: 100%;
}

.form-input {
    width: 100%;
    border-radius: 10px;
    padding: 14px 20px;



    border: 1px solid #33393e;
    font-family: inherit;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    color: #33393e;
}

.form-input::placeholder {
    opacity: 0.7;
    color: #33393e;
}

.form button{
    background-color: rgba(11, 122, 208, 1);
    color: white;
}