Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&display=swap');
  2.  
  3. * {
  4.     font-family: 'Montserrat', sans-serif;
  5.     box-sizing: border-box;
  6. }
  7.  
  8. body {
  9.     margin: 0px;
  10.     background-color: #f5f6fa;
  11. }
  12.  
  13. .wrapper {
  14.     width: 90%;
  15.     margin: 0px auto;
  16. }
  17.  
  18. header {
  19.     background-color: #ffffff;
  20.     position: fixed;
  21.     top: 0px;  
  22.     width: 100%;
  23.     padding: 10px 0;
  24.     border-bottom: 1px solid #e2e4f0;
  25. }
  26.  
  27. header .logo {
  28.     display: inline-block;
  29. }
  30.  
  31. header .logo img {
  32.     height: 60px;
  33. }
  34.  
  35. .main {
  36.     padding-top: 80px;
  37. }
  38.  
  39. .main .title {
  40.     display: flex;
  41.     flex-wrap: wrap;
  42.     align-items: center;
  43.     justify-content: space-between;
  44.     padding: 15px 0px 20px 0px;
  45. }
  46.  
  47. .title .text {
  48.     flex-basis: 68%;
  49. }
  50.  
  51. .text h2 {
  52.     text-align: center;
  53.     font-weight: 500;
  54. }
  55.  
  56. .title .button {
  57.     flex-basis: 15%;
  58. }
  59.  
  60. .button button.small {
  61.     display: none;
  62. }
  63.  
  64. @media screen and (max-width: 880px) {
  65.     .button button.big {
  66.         display: none;
  67.     }
  68.  
  69.     .button button.small {
  70.         display: initial;
  71.     }
  72. }
  73.  
  74. .button button.back {
  75.     padding: 10px 20px;
  76.     background-color: #ffffff;
  77.     border: 1px solid #c0ccda;
  78.     border-radius: 5px;
  79.     font-weight: 500;
  80.     cursor: pointer;
  81. }
  82.  
  83. .button button.back:hover {
  84.     background-color: #f5f6fa;
  85.     border: 1px solid #94a2af;
  86. }
  87.  
  88. .button button.back:active {
  89.     transform: scale(0.9);
  90.     transition: 20ms;
  91. }
  92.  
  93. .title .text + .button {
  94.     text-align: right;
  95. }
  96.  
  97. .title .text + .button button.back i {
  98.     margin-right: 5px;
  99. }
  100.  
  101. .main form {
  102.     background-color: #ffffff;
  103.     border-radius: 10px;
  104.     border: 1px solid #e2e4f0;
  105.     margin-bottom: 100px;
  106.     width: 100%;
  107. }
  108.  
  109. form .container {
  110.     padding: 20px;
  111.     overflow: hidden;
  112. }
  113.  
  114. form .form-group {
  115.     margin-bottom: 20px;
  116. }
  117.  
  118. .form-group label {
  119.     font-weight: 500;
  120.     font-size: small;
  121. }
  122.  
  123. .form-group .form-control {
  124.     width: 100%;
  125.     padding: 10px;
  126.     color: #757575;
  127.     border-radius: 5px;
  128.     border: 1px solid #cfd4da;
  129.     margin-top: 5px;
  130.     margin-right: 20px;
  131. }
  132.  
  133. .form-group .form-control:focus {
  134.     border-color:#80bdff;
  135.     outline:0;
  136.     box-shadow:0 0 0 .2rem rgba(0, 123, 255,.25);
  137. }
  138.  
  139. .form-group small {
  140.     font-size: 12px;
  141.     padding-left: 5px;
  142. }
  143.  
  144. form .subtitle {
  145.     display: flex;
  146.     flex-wrap: wrap;
  147.     align-items: center;
  148.     justify-content: space-between;
  149.     margin-bottom: 10px;
  150. }
  151.  
  152. .subtitle .line {
  153.     flex-basis: 38%;
  154. }
  155.  
  156. .subtitle .line hr {
  157.     border: 1px solid #ffffff;
  158.     border-top: 1px solid #757575;
  159. }
  160.  
  161. .subtitle .text {
  162.     flex-basis: 20%;
  163.     text-align: center;    
  164.     font-weight: 400;
  165. }
  166.  
  167. form button.submit {
  168.     float: right;
  169.     background-color: #023980;
  170.     color: #ffffff;
  171.     border: none;
  172.     border-radius: 5px;
  173.     font-weight: 500;
  174.     padding: 10px 20px;
  175.     margin-top: 20px;
  176. }
  177.  
  178. form button.submit:hover {
  179.     background-color: #012962;
  180.     cursor: pointer;
  181.     transition: 5ms;
  182. }
  183.  
  184. form button.submit:active {
  185.     transform: scale(0.9);
  186.     transition: 20ms;
  187. }