UserPackage.css 528 B

1234567891011121314151617181920212223242526272829303132
  1. .LoginScreen {
  2. color: rgba(0, 0, 0, 0.87) !important;
  3. border-bottom: 1px solid #9e9e9e !important;
  4. position: fixed;
  5. top: 0;
  6. left: 0;
  7. width: 100vw;
  8. height: 100vh;
  9. background: #e9ebee;
  10. z-index: 5000;
  11. text-align: center;
  12. justify-content: center;
  13. }
  14. .LoginScreen input {
  15. border: none;
  16. border-bottom: 1px solid #9e9e9e !important;
  17. }
  18. .FormContainer {
  19. background: white;
  20. padding: 10px;
  21. max-width: 400px;
  22. border-radius: 5px;
  23. }
  24. .LoginText {
  25. color: #6E6E79;
  26. }
  27. .RegisterText {
  28. cursor: pointer;
  29. color: #6e6e6e;
  30. }