SignIn.module.css 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. .signIn_form {
  2. width: 20%;
  3. min-height: 106px;
  4. display: flex;
  5. height: auto;
  6. background-color: rgb(164, 162, 167);
  7. margin: 0 auto;
  8. -webkit-box-shadow: 0px -23px 30px 18px #7c3ee0;
  9. box-shadow: 0px -23px 30px 18px #858586;
  10. border: solid 3px rgb(2, 2, 2);
  11. border-radius: 20px;
  12. padding-bottom: 10px;
  13. padding-left: 6px;
  14. padding-top: 3px;
  15. padding-right: 2px;
  16. border-bottom: none;
  17. position: absolute;
  18. left: 40%;
  19. top: 200px;
  20. }
  21. .signIn_input {
  22. width: 100%;
  23. }
  24. .signIn_input_wrapper {
  25. display: flex;
  26. flex-direction: column;
  27. justify-content: space-between;
  28. padding-right: 10px;
  29. width: 280px;
  30. }
  31. .signIn_button {
  32. text-orientation: upright;
  33. writing-mode: vertical-rl;
  34. transform: rotate(7deg);
  35. -ms-transform: rotate(7deg);
  36. -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.93969262, M12=0.34202014, M21=-0.34202014, M22=0.93969262,sizingMethod='auto expand')"; /* IE6-8 */
  37. -webkit-transform: rotate(7deg);
  38. width: 64px;
  39. height: auto;
  40. }
  41. .input_show_password {
  42. display: inline-block;
  43. margin-right: 10px;
  44. }
  45. @media (min-width: 767px) {
  46. .signIn_form {
  47. width: 600px;
  48. }
  49. .signIn_input_wrapper {
  50. padding-right: 10px;
  51. width: 550px;
  52. }
  53. }