1234567891011121314151617181920212223242526272829303132 |
- .LoginScreen {
- color: rgba(0, 0, 0, 0.87) !important;
- border-bottom: 1px solid #9e9e9e !important;
- position: fixed;
- top: 0;
- left: 0;
- width: 100vw;
- height: 100vh;
- background: #e9ebee;
- z-index: 5000;
- text-align: center;
- justify-content: center;
- }
- .LoginScreen input {
- border: none;
- border-bottom: 1px solid #9e9e9e !important;
- }
- .FormContainer {
- background: white;
- padding: 10px;
- max-width: 400px;
- border-radius: 5px;
- }
- .LoginText {
- color: #6E6E79;
- }
- .RegisterText {
- cursor: pointer;
- color: #6e6e6e;
- }
|