style_login.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. *{
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. font-family: 'Poppins',sans-serif;
  6. }
  7. body{
  8. background: #F5E6CE;
  9. overflow: hidden;
  10. }
  11. ::selection{
  12. background: rgba(26,188,156,0.3);
  13. }
  14. .container{
  15. max-width: 440px;
  16. padding: 0 20px;
  17. margin: 170px auto;
  18. }
  19. .wrapper{
  20. width: 100%;
  21. background: #fff;
  22. border-radius: 5px;
  23. box-shadow: 0px 4px 10px 1px rgba(0,0,0,0.1);
  24. }
  25. .wrapper .title{
  26. height: 90px;
  27. background: #000000;
  28. border-radius: 5px 5px 0 0;
  29. color: #fff;
  30. font-size: 30px;
  31. font-weight: 600;
  32. display: flex;
  33. align-items: center;
  34. justify-content: center;
  35. }
  36. .wrapper form{
  37. padding: 30px 25px 25px 25px;
  38. }
  39. .wrapper form .row{
  40. height: 45px;
  41. margin-bottom: 15px;
  42. position: relative;
  43. }
  44. .wrapper form .row input{
  45. height: 100%;
  46. width: 100%;
  47. outline: none;
  48. padding-left: 60px;
  49. border-radius: 5px;
  50. border: 1px solid lightgrey;
  51. font-size: 16px;
  52. transition: all 0.3s ease;
  53. }
  54. form .row input:focus{
  55. border-color: #000000;
  56. box-shadow: inset 0px 0px 2px 2px rgba(26,188,156,0.25);
  57. }
  58. form .row input::placeholder{
  59. color: #999;
  60. }
  61. .wrapper form .row i{
  62. position: absolute;
  63. width: 47px;
  64. height: 100%;
  65. color: #fff;
  66. font-size: 18px;
  67. background: #000000;
  68. border: 1px solid #000000;
  69. border-radius: 5px 0 0 5px;
  70. display: flex;
  71. align-items: center;
  72. justify-content: center;
  73. }
  74. .wrapper form .pass{
  75. margin: -8px 0 20px 0;
  76. }
  77. .wrapper form .pass a{
  78. color: #697A4B;
  79. font-size: 17px;
  80. text-decoration: none;
  81. font-weight: 550;
  82. }
  83. .wrapper form .pass a:hover{
  84. text-decoration: underline;
  85. }
  86. .wrapper form .button input{
  87. color: #fff;
  88. font-size: 20px;
  89. font-weight: 500;
  90. padding-left: 0px;
  91. background: #000000;
  92. border: 1px solid #000000;
  93. cursor: pointer;
  94. }
  95. form .button input:hover{
  96. background: #000000;
  97. }
  98. .wrapper form .signup-link{
  99. text-align: center;
  100. margin-top: 20px;
  101. font-size: 17px;
  102. }
  103. .wrapper form .signup-link a{
  104. color: #697A4B;
  105. text-decoration: none;
  106. font-weight: 550;
  107. }
  108. form .signup-link a:hover{
  109. text-decoration: underline;
  110. }
  111. a {
  112. text-decoration: none;
  113. }