login.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. #navbar {
  2. display: none;
  3. }
  4. .login_page {
  5. display: flex;
  6. justify-content: center;
  7. align-items: center;
  8. height: 75vw;
  9. background: linear-gradient( rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55) ), url(../images/back_main_one.jpg);background-repeat: repeat; background-position: center;
  10. }
  11. .login {
  12. width: 80%;
  13. height: 50%;
  14. margin-left: 10%;
  15. margin-right: 10%;
  16. background-color: #dbc3af;
  17. display: flex;
  18. flex-direction: column;
  19. justify-content: space-evenly;
  20. }
  21. .login_form {
  22. margin-bottom: 10%;
  23. }
  24. .header_title {
  25. text-align: center;
  26. color: #000000;
  27. font-size: 3.5vw;
  28. width: 100%;
  29. }
  30. .data_block {
  31. width: 100%;
  32. display: inline-flex;
  33. justify-content: center;
  34. }
  35. .form_data, .form_data_button {
  36. display: flex;
  37. flex-direction: column;
  38. margin-left: 2%;
  39. margin-left: 2%;
  40. }
  41. .form_data_button {
  42. display: flex;
  43. flex-direction: column;
  44. justify-content: center;
  45. align-items: center;
  46. }
  47. .input_data {
  48. color: #000000;
  49. border: 0.1vw solid #595008;
  50. height: 4.7vw;
  51. width: 20vw;
  52. background-color: #dbc3af;
  53. border-radius: 5vw;
  54. font-size: 1.3vw;
  55. }
  56. .input_button {
  57. width: 20vw;
  58. height: 5vw;
  59. border-radius: 5vw;
  60. vertical-align: middle;
  61. }
  62. .form-label {
  63. font-size: 1.3vw;
  64. }
  65. .login_button {
  66. background-color: #000000;
  67. color: #ffffff;
  68. font-size: 1.5vw;
  69. margin-bottom: 5px;
  70. }
  71. .register_button {
  72. margin-top: 5px;
  73. background-color: #f5c99f;
  74. width: 20vw;
  75. height: 5vw;
  76. color: #000000;
  77. border-radius: 5vw;
  78. vertical-align: middle;
  79. font-size: 1.5vw;
  80. }
  81. .register_button:hover {
  82. text-decoration: none;
  83. color: #000000;
  84. }
  85. .register {
  86. width: 100%;
  87. text-align: center;
  88. height: 100%;
  89. display: flex;
  90. align-items: center;
  91. justify-content: center;
  92. }
  93. .box {
  94. margin-left: 9vw;
  95. }
  96. .recovery_button {
  97. color: #ffffff;
  98. font-size: 1.5vw;
  99. transition: color 0.5s ease-in, border-bottom 0.5s ease-in;
  100. }
  101. .recovery_button:hover {
  102. color: #694a2d;
  103. border-bottom: 3px solid #f3c79e;
  104. text-decoration: none;
  105. }