12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- .wrapperLogin {
- background-color: rgb(224, 239, 240);
- width: 30vw;
- height: 60vh;
- border: solid rgb(65, 109, 109);
- margin-left: auto;
- margin-right: auto;
- padding-left: 15px;
- }
- form {
- margin-bottom: 5%;
- margin-left: auto;
- margin-right: auto;
- }
- .imgcontainer img {
- display: block;
- margin-top: 8%;
- margin-left: auto;
- margin-right: auto;
- background-color: rgb(185, 230, 202);
- border: solid rgb(84, 86, 88);
- border-radius: 50%;
- width: 25%;
- }
- #statusLogin{
- margin-top: 3%;
- width: 95%;
- height: 20px;
- text-align: center;
-
- }
- .wrapperLogin p {
- font-size: 25px;
- }
- input[type=text], input[type=password] {
- width: 95%;
- padding: 12px;
- display: inline-block;
- border: 1px solid #ccc;
- box-sizing: border-box;
- }
- input[type=button], input[type=reset] {
- width: 95%;
- padding: 12px;
- margin-top: 15px;
- display: inline-block;
- border: 1px solid #ccc;
- box-sizing: border-box;
- }
- input[type=button] {
- background-color: rgb(30, 154, 158);
- }
|