.container{ background-color: #343a40; width: 82vmin; height: 70vh; display: flex; justify-self: center; align-self: center; padding: 2rem; } .form{ color: white; display: flex; flex-direction: column; width: 100%; align-items: center; justify-content: center; gap: 1rem; &-group{ display: flex; flex-direction: column; } } .btn{ width: 120px; padding: .5rem .8rem; font-size: 110%; border: none; background-color: #1a7431; color: white; border-radius: 4px; cursor: pointer; transition: all .3s; &:hover{ filter: brightness(85%); } } .input{ background-color: #6c757d; color: #feffff; width: 60vmin; padding: 5px; font-size: 110%; border: none; &:focus, &:active{ outline: none; } } .error{ color: red; }