learning-center/public/assets/css/form.css

49 lines
1.1 KiB
CSS
Raw Normal View History

2024-09-08 13:48:26 +03:00
.form-input {
display: block;
width: 100%;
padding: 0.375rem 0.75rem;
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #212529;
background-color: #fff;
background-clip: padding-box;
border: 1px solid #ced4da;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
border-radius: 0.25rem;
transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
font-family: inherit;
}
.form-input:focus {
color: #212529;
background-color: #fff;
border-color: #86b7fe;
outline: 0;
box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%);
}
.form-button {
display: flex;
justify-content: center;
align-items: center;
padding: 12px 12px;
border-radius: 0.25rem;
font-size: 13px;
font-weight: 500;
text-transform: uppercase;
margin-top: 16px;
border: none;
background-color: #ff00fd;
color: white;
cursor: pointer;
transition: .15s;
height: 46px;
}
.form-button:hover {
background-color: #e900e8;
color: #fcfcfc !important;
transition: 0.17s;
}