23 lines
376 B
CSS
23 lines
376 B
CSS
input {
|
|
font-family: Montserrat;
|
|
border: 1px solid rgba(0, 16, 61, 0.12);
|
|
box-sizing: border-box;
|
|
height: 40px;
|
|
background: #fff;
|
|
padding: 0 12px;
|
|
width: 100%;
|
|
outline: none;
|
|
/* font-size: 15px; */
|
|
}
|
|
|
|
input::placeholder {
|
|
color: var(--color-primary);
|
|
filter: brightness(0.25);
|
|
opacity: 0.9;
|
|
}
|
|
|
|
input:disabled {
|
|
opacity: 0.8;
|
|
cursor: not-allowed;
|
|
}
|