/* Поля ввода */
.auth-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid #c8a84e;
    border-radius: 10px;
    background-color: #fff;
    outline: none;
    transition: border-color 0.2s;
}

.auth-input:focus {
    border-color: #b8962e;
}