register.component.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. @import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
  2. * {
  3. margin: 12px;
  4. margin-left: auto;
  5. margin-right: auto;
  6. padding: 0;
  7. max-width: 500px;
  8. outline: none;
  9. box-sizing: border-box;
  10. font-family: 'Poppins', sans-serif;
  11. }
  12. body {
  13. background-color: #f5f5f5;
  14. display: flex;
  15. justify-content: center;
  16. text-align: center;
  17. align-items: center;
  18. height: 100vh;
  19. }
  20. .text{
  21. background: -webkit-linear-gradient(right, #56d8e4, #9f01ea, #56d8e4, #9f01ea);
  22. -webkit-background-clip: text;
  23. -webkit-text-fill-color: transparent;
  24. }
  25. .container {
  26. max-width: 500px;
  27. background-color: #fff;
  28. padding: 20px;
  29. border-radius: 8px;
  30. box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  31. }
  32. .text {
  33. text-align: center;
  34. font-size: 35px;
  35. font-weight: 600;
  36. margin-bottom: 20px;
  37. }
  38. .form-group {
  39. margin-bottom: 20px;
  40. }
  41. .form-group:hover{
  42. }
  43. .label {
  44. font-size: 16px;
  45. font-weight: 500;
  46. color: #333;
  47. }
  48. input[type="text"],
  49. input[type="password"] {
  50. width: 100%;
  51. padding: 10px;
  52. border: 1px solid #ccc;
  53. border-radius: 4px;
  54. font-size: 16px;
  55. }
  56. input:hover{
  57. border-color: #721c24;
  58. }
  59. button {
  60. width: 100%;
  61. padding: 12px;
  62. border: none;
  63. border-radius: 4px;
  64. background-color: #007bff;
  65. color: #fff;
  66. font-size: 16px;
  67. font-weight: 500;
  68. cursor: pointer;
  69. transition: background-color 0.3s;
  70. }
  71. button:hover {
  72. background-color: #0056b3;
  73. }
  74. .alert-danger {
  75. margin-top: 10px;
  76. padding: 10px;
  77. background-color: #f8d7da;
  78. border: 1px solid #f5c6cb;
  79. border-radius: 4px;
  80. color: #721c24;
  81. font-size: 14px;
  82. }
  83. p {
  84. text-align: center;
  85. margin-top: 20px;
  86. font-size: 16px;
  87. }
  88. a {
  89. display: block;
  90. text-align: center;
  91. margin-top: 10px;
  92. text-decoration: none;
  93. color: #007bff;
  94. font-size: 16px;
  95. }
  96. a:hover {
  97. text-decoration: underline;
  98. }