обращение.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /* Общие стили */
  2. body {
  3. font-family: 'Arial', sans-serif;
  4. background-image: url('../картинки/фон.jpg');
  5. margin: 0;
  6. padding: 0;
  7. display: flex;
  8. justify-content: center;
  9. align-items: center;
  10. min-height: 100vh;
  11. }
  12. .big_con {
  13. display: flex;
  14. justify-content: center;
  15. align-items: center;
  16. min-height: 100vh;
  17. }
  18. .block_auth {
  19. background-color: #fff;
  20. padding: 30px;
  21. border-radius: 10px;
  22. box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  23. text-align: center;
  24. width: 400px; /* Ширина блока авторизации */
  25. }
  26. h2 {
  27. font-size: 24px;
  28. margin-bottom: 20px;
  29. color: #333;
  30. }
  31. /* Стили для полей ввода */
  32. .enter {
  33. width: 100%;
  34. padding: 10px;
  35. margin-bottom: 15px;
  36. border: 1px solid #ccc;
  37. border-radius: 5px;
  38. box-sizing: border-box;
  39. font-size: 16px;
  40. }
  41. .enter:focus {
  42. outline: none;
  43. border-color: #444444; /* Цвет рамки при фокусе */
  44. }
  45. /* Стили для кнопок */
  46. .orange {
  47. background-color: #444444; /* Серый цвет кнопки */
  48. color: #fff;
  49. padding: 10px 20px;
  50. border: none;
  51. border-radius: 5px;
  52. cursor: pointer;
  53. font-size: 16px;
  54. transition: background-color 0.3s ease;
  55. margin-bottom: 15px;
  56. }
  57. .orange:hover {
  58. background-color: #6e6e6e; /* Серый цвет при наведении */
  59. }
  60. /* Стили для информации о поддержке */
  61. .support-info {
  62. text-align: left;
  63. margin-top: 20px;
  64. }
  65. .support-info h3 {
  66. margin-bottom: 5px;
  67. }
  68. /* Стили для кнопки закрытия */
  69. .close-button {
  70. position: absolute;
  71. top: 10px;
  72. right: 10px;
  73. background: transparent;
  74. border: none;
  75. font-size: 20px;
  76. cursor: pointer;
  77. }
  78. .footer-link {
  79. position: absolute;
  80. bottom: 20px;
  81. left: 50%;
  82. transform: translateX(-50%);
  83. color: white;
  84. text-decoration: none;
  85. font-weight: bold;
  86. background-color: #444444;
  87. padding: 10px 20px;
  88. border-radius: 5px;
  89. z-index: 2;
  90. }
  91. .footer-link:hover {
  92. background-color: #6e6e6e;
  93. }