style.css 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. html {
  2. height: 100%;
  3. }
  4. body {
  5. height: 100%;
  6. margin: 0;
  7. display: grid;
  8. justify-items: center;
  9. align-items: center;
  10. background-color: cornsilk;
  11. }
  12. #main-holder {
  13. width: 50%;
  14. height: 70%;
  15. display: grid;
  16. justify-items: center;
  17. align-items: center;
  18. background-color: white;
  19. border-radius: 7px;
  20. box-shadow: 0px 0px 5px 2px black;
  21. }
  22. #login-error-msg-holder {
  23. width: 100%;
  24. height: 100%;
  25. display: grid;
  26. justify-items: center;
  27. align-items: center;
  28. }
  29. #login-error-msg {
  30. width: 23%;
  31. text-align: center;
  32. margin: 0;
  33. padding: 5px;
  34. font-size: 12px;
  35. font-weight: bold;
  36. color: #8a0000;
  37. border: 1px solid #8a0000;
  38. background-color: #e58f8f;
  39. opacity: 0;
  40. }
  41. #error-msg-second-line {
  42. display: block;
  43. }
  44. #login-form {
  45. align-self: flex-start;
  46. display: grid;
  47. justify-items: center;
  48. align-items: center;
  49. }
  50. .login-form-field::placeholder {
  51. color: #3a3a3a;
  52. }
  53. .login-form-field {
  54. border: none;
  55. border-bottom: 1px solid #3a3a3a;
  56. margin-bottom: 10px;
  57. border-radius: 3px;
  58. outline: none;
  59. padding: 0px 0px 5px 5px;
  60. }
  61. #login-form-submit {
  62. width: 100%;
  63. padding: 7px;
  64. border: none;
  65. border-radius: 5px;
  66. color: white;
  67. font-weight: bold;
  68. background-color: black;
  69. cursor: pointer;
  70. outline: none;
  71. transition: all 0.3s ease;
  72. }
  73. #login-form-submit:hover {
  74. background-color: #3a3a3a;
  75. }