style_Email.css 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. .header_content{
  2. height: 100px;
  3. background-color: #282e30;
  4. display: flex;
  5. flex-direction: row;
  6. justify-content: space-between;
  7. }
  8. header{
  9. -webkit-box-shadow: 0px 19px 8px 0px rgba(34, 72, 80, 0.2);
  10. -moz-box-shadow: 0px 19px 8px 0px rgba(34, 72, 80, 0.2);
  11. box-shadow: 0px 19px 8px 0px rgba(34, 72, 80, 0.2);
  12. }
  13. .Name_site{
  14. background-color: #282e30;
  15. color: rgb(255, 255, 255);
  16. width: 400px;
  17. height: 150px;
  18. text-align: end;
  19. font-size: 24px;
  20. justify-content: start;
  21. top: 0;
  22. left: 0;
  23. box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  24. transition: transform .3s;
  25. }
  26. .Name{
  27. padding-top: 70px;
  28. padding-right: 10px;
  29. }
  30. .Name_site:hover {
  31. background-color: #70c6d1;
  32. transform: scale(1.4);
  33. }
  34. .Account
  35. {width: 1000px;
  36. height: 500px;
  37. position: absolute;
  38. top: 0;
  39. right: 0;
  40. bottom: 0;
  41. left: 0;
  42. margin: auto;
  43. background-color: #A8DADC;
  44. border-radius: 30px;
  45. display: flex;
  46. align-items: center;
  47. justify-content: center;
  48. flex-direction: column;
  49. gap: 10px;
  50. }
  51. .pred{
  52. justify-content: center;
  53. align-items: center;
  54. }
  55. .pred_up{
  56. width: 1000px;
  57. margin: 0 auto; /* Center the block horizontally */
  58. border-radius: 10px; /* Add rounded corners */
  59. -webkit-box-shadow: 0px 19px 8px 0px rgba(34, 72, 80, 0.2);
  60. -moz-box-shadow: 0px 19px 8px 0px rgba(34, 72, 80, 0.2);
  61. box-shadow: 0px 19px 8px 0px rgba(34, 72, 80, 0.2);/* Add a shadow */
  62. padding: 20px; /* Add padding to the block */
  63. text-align: center; /* Center the text within the block */
  64. height: 100%;
  65. background-color: #fff;
  66. overflow: auto;
  67. }
  68. .knopka{
  69. box-shadow: 4px 12px 8px rgba(0, 0, 0, 0.2);
  70. width: 200px;
  71. height: 50px;
  72. background-color: #A8DADC;
  73. text-align: center;
  74. border-radius: 20px;
  75. margin-top: 20px;
  76. margin-right: 10px;}
  77. .knopka_text{
  78. color: #fff;
  79. }
  80. .Account label {
  81. margin-bottom: 10px;
  82. }
  83. .Account input[type="email"],input[type="login"] {
  84. width: 500px;
  85. height: 40px;
  86. margin-bottom: 20px;
  87. padding: 10px;
  88. border: 1px solid #ccc;
  89. font-size: 20px;
  90. border-radius: 5px;
  91. display: flex;
  92. align-items: center;
  93. }
  94. .Account input[type="submit"] {
  95. width: 100%;
  96. height: 40px;
  97. background-color: #333;
  98. color: #fff;
  99. border: none;
  100. border-radius: 5px;
  101. cursor: pointer;
  102. font-size: 20px;
  103. }
  104. .Account input[type="submit"]:hover {
  105. background-color: #444;
  106. font-size: 20px;
  107. }
  108. ::placeholder{
  109. font-size: 20px;
  110. }
  111. footer {
  112. background-color: #282e30;
  113. color: #fff;
  114. padding: 20px;
  115. text-align: center;
  116. box-shadow: -1px -22px 24px 0px rgba(21, 46, 66, 0.2);
  117. }
  118. .footer-content {
  119. display: flex;
  120. justify-content: center;
  121. }
  122. .footer-info,
  123. .footer-social {
  124. width: 50%;
  125. }
  126. .copyright {
  127. margin-top: 20px;
  128. }
  129. body {
  130. background: linear-gradient(#ffffff,#ffffff,#bfeff5 ,#bfeff5 , #7dabb1);
  131. max-width: auto;
  132. background-repeat: no-repeat;
  133. margin: 0;
  134. padding: 0;
  135. font-family: verdana, sans-serif;
  136. background-size: cover;
  137. }