style.css 987 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. .wrapperLogin {
  2. background-color: rgb(224, 239, 240);
  3. width: 30vw;
  4. height: 60vh;
  5. border: solid rgb(65, 109, 109);
  6. margin-left: auto;
  7. margin-right: auto;
  8. padding-left: 15px;
  9. }
  10. form {
  11. margin-bottom: 5%;
  12. margin-left: auto;
  13. margin-right: auto;
  14. }
  15. .imgcontainer img {
  16. display: block;
  17. margin-top: 8%;
  18. margin-left: auto;
  19. margin-right: auto;
  20. background-color: rgb(185, 230, 202);
  21. border: solid rgb(84, 86, 88);
  22. border-radius: 50%;
  23. width: 25%;
  24. }
  25. #statusLogin{
  26. margin-top: 3%;
  27. width: 95%;
  28. height: 20px;
  29. text-align: center;
  30. }
  31. .wrapperLogin p {
  32. font-size: 25px;
  33. }
  34. input[type=text], input[type=password] {
  35. width: 95%;
  36. padding: 12px;
  37. display: inline-block;
  38. border: 1px solid #ccc;
  39. box-sizing: border-box;
  40. }
  41. input[type=button], input[type=reset] {
  42. width: 95%;
  43. padding: 12px;
  44. margin-top: 15px;
  45. display: inline-block;
  46. border: 1px solid #ccc;
  47. box-sizing: border-box;
  48. }
  49. input[type=button] {
  50. background-color: rgb(30, 154, 158);
  51. }