File size: 709 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
.signup-container {
height: 100vh;
max-width: 1550px;
display: flex;
justify-content: center;
align-items: center;
}
.signup-div {
border: 1px solid #e7e7e7;
height: auto;
width: 350px;
margin-top: -150px;
display: flex;
flex-direction: column;
}
.signup-div h1 {
padding-top: 10px;
padding-left: 15px;
}
.signup-div div {
width: 90%;
margin-right: auto !important;
margin-left: auto !important;
display: flex;
flex-direction: column;
margin-top: 20%;
}
.signup-div div input {
margin-top: 10px;
}
.signup-div div button {
margin-top: 10px;
margin-bottom: 10px;
background-color: #f0c14b;
border-color: #a88734 #9c7e31 #846a29;
border: 1px;
font-size: 90%;
max-height: 30px;
}
|