/* Form section */
.form {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(black, rgba(0, 0, 0, 0.627)),
        url(../img/kosmetika_7.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.form form {
    text-align: center;
}

input::placeholder {
    color: rgb(178, 178, 178);
}

input, textarea {
    outline: none;
    border: none;
    background-color: transparent;
    border-bottom: 1px solid white;
    color: white;
    font-size: 20px;
    padding: 5px 10px;
    margin-bottom: 15px;
}

button {
    width: 250px;
    font-size: 20px;
    padding: 5px 10px;
    background: #a17e20;
    color: white;
    border: none;
    margin-top: 15px;
    cursor: pointer;
    transition: all 0.3s linear;
}

button:hover {
    background: #be9524;
}