2019-04-29 19:46:11 +03:00
|
|
|
input[type="text"],
|
|
|
|
input[type="password"],
|
|
|
|
input[type="email"] {
|
|
|
|
appearance: none;
|
2020-09-24 05:14:38 +03:00
|
|
|
border: 1px solid var(--mid-gray-color);
|
2019-04-29 19:46:11 +03:00
|
|
|
border-radius: 5px;
|
|
|
|
font-size: 16px;
|
|
|
|
height: 50px;
|
|
|
|
outline: none;
|
|
|
|
padding: 0 15px;
|
2020-09-24 05:14:38 +03:00
|
|
|
}
|
|
|
|
input[type="text"]:focus,
|
|
|
|
input[type="password"]:focus,
|
|
|
|
input[type="email"]:focus {
|
|
|
|
border-color: var(--primary-color);
|
|
|
|
}
|