login.css 2.2 KB

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