No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

page-auth.css 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. .authentication-wrapper {
  2. display: flex;
  3. flex-basis: 100%;
  4. min-height: 100vh;
  5. width: 100%;
  6. }
  7. .authentication-wrapper .authentication-inner {
  8. width: 100%;
  9. }
  10. .authentication-wrapper.authentication-basic {
  11. align-items: center;
  12. justify-content: center;
  13. }
  14. .authentication-wrapper.authentication-basic .card-body {
  15. padding: 2rem;
  16. }
  17. .authentication-wrapper.authentication-cover {
  18. align-items: flex-start;
  19. }
  20. .authentication-wrapper.authentication-cover .authentication-inner {
  21. height: 100%;
  22. margin: auto 0;
  23. }
  24. .authentication-wrapper.authentication-cover .authentication-inner .auth-cover-bg {
  25. width: 100%;
  26. margin: 2rem 0 2rem 2rem;
  27. height: calc(100vh - 4rem);
  28. border-radius: 1.125rem;
  29. position: relative;
  30. }
  31. .authentication-wrapper.authentication-cover .authentication-inner .auth-cover-bg .auth-illustration {
  32. max-height: 65%;
  33. z-index: 1;
  34. }
  35. .authentication-wrapper.authentication-cover .authentication-inner .platform-bg {
  36. position: absolute;
  37. width: 100%;
  38. bottom: 0%;
  39. left: 0%;
  40. height: 35%;
  41. }
  42. .authentication-wrapper.authentication-cover .authentication-inner .auth-multisteps-bg-height {
  43. height: 100vh;
  44. }
  45. .authentication-wrapper.authentication-cover .authentication-inner .auth-multisteps-bg-height > img:first-child {
  46. z-index: 1;
  47. }
  48. .authentication-wrapper.authentication-basic .authentication-inner {
  49. max-width: 400px;
  50. position: relative;
  51. }
  52. .authentication-wrapper.authentication-basic .authentication-inner:before {
  53. width: 238px;
  54. height: 233px;
  55. content: " ";
  56. position: absolute;
  57. top: -55px;
  58. left: -40px;
  59. background-image: url("data:image/svg+xml,%3Csvg width='239' height='234' viewBox='0 0 239 234' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='88.5605' y='0.700195' width='149' height='149' rx='19.5' stroke='%237367F0' stroke-opacity='0.16'/%3E%3Crect x='0.621094' y='33.761' width='200' height='200' rx='10' fill='%237367F0' fill-opacity='0.08'/%3E%3C/svg%3E%0A");
  60. }
  61. @media (max-width: 575.98px) {
  62. .authentication-wrapper.authentication-basic .authentication-inner:before {
  63. display: none;
  64. }
  65. }
  66. .authentication-wrapper.authentication-basic .authentication-inner:after {
  67. width: 180px;
  68. height: 180px;
  69. content: " ";
  70. position: absolute;
  71. z-index: -1;
  72. bottom: -30px;
  73. right: -56px;
  74. background-image: url("data:image/svg+xml,%3Csvg width='181' height='181' viewBox='0 0 181 181' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1.30469' y='1.44312' width='178' height='178' rx='19' stroke='%237367F0' stroke-opacity='0.16' stroke-width='2' stroke-dasharray='8 8'/%3E%3Crect x='22.8047' y='22.9431' width='135' height='135' rx='10' fill='%237367F0' fill-opacity='0.08'/%3E%3C/svg%3E");
  75. }
  76. @media (max-width: 575.98px) {
  77. .authentication-wrapper.authentication-basic .authentication-inner:after {
  78. display: none;
  79. }
  80. }
  81. .authentication-wrapper .auth-input-wrapper .auth-input {
  82. max-width: 50px;
  83. padding-left: 0.4rem;
  84. padding-right: 0.4rem;
  85. font-size: 150%;
  86. }
  87. @media (max-height: 636px) {
  88. .auth-multisteps-bg-height {
  89. height: 100% !important;
  90. }
  91. }
  92. @media (max-width: 575.98px) {
  93. .authentication-wrapper .auth-input-wrapper .auth-input {
  94. font-size: 1.125rem;
  95. }
  96. }
  97. #twoStepsForm .fv-plugins-bootstrap5-row-invalid .form-control {
  98. border-color: #ea5455;
  99. }
  100. .light-style .authentication-wrapper.authentication-bg {
  101. background-color: #fff;
  102. }
  103. .light-style .auth-cover-bg-color {
  104. background-color: #f8f7fa;
  105. }
  106. .dark-style .authentication-wrapper.authentication-bg {
  107. background-color: #2f3349;
  108. }
  109. .dark-style .auth-cover-bg-color {
  110. background-color: #25293c;
  111. }