123456789101112131415161718192021222324252627282930313233 |
- .form-item{
- display: flex;
- flex-direction: column;
- }
- label{
- padding-bottom: 0.5rem;
- }
- input{
- height: 2rem;
- width: 50%;
- }
- .form-submit{
- background-color: white;
- border: solid black 1px;
- text-transform: uppercase;
- padding: 1rem;
- height: 5rem !important;
- margin-bottom: 1rem;
- font-size: 1.3rem;
- font-weight: 300;
- width: fit-content;
- }
- #user-login-form{
- .form-item{
- flex-direction: row;
- margin: 1rem;
- label{
- padding-right: 0.5rem;
- }
- }
- }
-
|