_registration.scss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. .registration {
  2. background-color: $ashen;
  3. display: grid;
  4. grid-template-columns: repeat(2, 1fr);
  5. grid-gap: 25px;
  6. height: 100vh;
  7. padding: 40px 80px;
  8. }
  9. .registration__column {
  10. border-radius: 40px;
  11. overflow: hidden;
  12. max-height: inherit;
  13. box-shadow: 2px 2px 20px rgba($color: $black, $alpha: 0.4);
  14. }
  15. .registration__img {
  16. img {
  17. height: 100%;
  18. width: 100%;
  19. object-fit: cover;
  20. }
  21. }
  22. .registration__body {
  23. background-color: $white;
  24. display: flex;
  25. align-items: center;
  26. justify-content:center;
  27. }
  28. .form-registration {
  29. min-width: 300px;
  30. }
  31. .form-registration__title {
  32. font-family: 'Oswald';
  33. font-weight: bold;
  34. font-size: 36px;
  35. margin-bottom: 25px;
  36. }
  37. .form-registration__field {
  38. &:not(:last-child) {
  39. margin-bottom: 20px;
  40. }
  41. }
  42. .form-registration__field_input {
  43. width: 100%;
  44. font-family: 'Noto Sans';
  45. font-size: 15px;
  46. border: 1px solid $black;
  47. padding: 7px 15px;
  48. color: $black;
  49. border-radius: 7px;
  50. &::placeholder {
  51. color: $grey;
  52. }
  53. }
  54. .form-registration__send {
  55. text-align: center;
  56. }
  57. .form-registration__send_btn {}
  58. .button-green {}
  59. .form-registration__line {
  60. display: flex;
  61. align-items: center;
  62. }
  63. .form-registration__line_text {
  64. font-family: 'Noto Sans';
  65. font-size: 15px;
  66. color: $ashen;
  67. padding: 0 25px;
  68. margin: 10px 0;
  69. }
  70. .form-registration__line_span {
  71. flex: 1 1 auto;
  72. display: block;
  73. height: 1px;
  74. border-radius: 5px;
  75. background-color: $ashen;
  76. }
  77. .form-registration__link {}
  78. .form-registration__link_login {
  79. display: block;
  80. text-align: center;
  81. font-family: 'Noto Sans';
  82. font-size: 15px;
  83. color: $black;
  84. span {
  85. color: $blue;
  86. }
  87. }