File size: 1,736 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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 |
.signup {
@media screen and (max-width: 800px) {
overflow-x: hidden;
}
&__bg {
min-height: 100%;
min-width: 1024px;
filter: brightness(65%);
width: 100%;
height: auto;
position: fixed;
top: 0;
left: 0;
@media screen and (max-width: 800px) {
left: 50%;
margin-left: -512px;
}
}
&__container {
width: 100%;
display: flex;
justify-content: center;
@media screen and (max-width: 800px) {
width: 100%;
}
}
&__shadow {
background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
margin-top: 85px;
height: 550px;
width: 390px;
position: absolute;
top: 0;
@media screen and (max-width: 800px) {
margin-top: 150px;
width: 330px;
margin-left: auto;
margin-right: auto;
height: 480px;
margin-bottom: 20px;
}
}
&__title {
margin-left: 60px;
margin-top: 34px;
margin-bottom: 15px;
@media screen and (max-width: 800px) {
margin-top: 12px;
margin-bottom: 5px;
}
}
&__btn-container {
width: 100%;
display: flex;
justify-content: center;
}
&__btn {
display: inline-flex;
flex-direction: column;
justify-content: center;
margin-top: 12px;
text-align: center;
width: 68%;
}
&__option {
width: 100%;
display: flex;
justify-content: center;
&--newuser {
color: #737373;
text-align: center;
margin-right: 5px;
}
&--link {
color: white;
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
}
}
|