/* эталон стилей элементов: поля, кнопки, ссылки и их состояния */

input {
    border-radius: 12px;
    border: 1.5px solid #dadada;
    min-height: 30px;
    min-width: 275px;
    padding: 5px;
    padding-left: 10px;
    font-size: 18px;
    transition: all 0.2s ease-out;
}

*:focus {
    box-shadow: 0 0 0 2px rgba(73, 73, 73, 0.95);
    outline: none;
}

button {
    border-radius: 12px;
    min-height: 40px;
    border: 1.5px solid #dadada;
    font-size: 17px;
    font-weight: 450;
    cursor: pointer;
    transition: all 0.2s ease-out;
}

a {
    color: black;
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
}

.blink {
    box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.712);
}

.eye {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);

    min-height: auto;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 12px;
}

.blur {
    filter: blur(1.5px);
}

.hide {
    opacity: 0;
}
