form {
    max-width: 70%;
    margin-top: 4vw;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

input, textarea, form {
    display: block;
    margin-bottom: 10px;
}

input[type="text"], textarea {
    width: 100%;
}

.form-button {
    margin-top: 10px;
}

@media screen and (min-width:700px) {
    form {
        max-width: 50%;
    }
}

@media screen and (min-width:1200px) {
    form {
        max-width: 30%;
    }
}

.login-title {
    margin-bottom: 50px;
}

.form-control:focus {
    border-color: #A65A5A;
    outline: none;
    box-shadow: 0 0 0 .2rem rgba(166, 90, 90, 0.2);
}