2024-03-05 22:12:46 +00:00
|
|
|
button.nopadding {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.blur {
|
|
|
|
display: block;
|
|
|
|
visibility: visible;
|
|
|
|
height: 100%;
|
|
|
|
width: 50%;
|
|
|
|
position: absolute;
|
|
|
|
backdrop-filter: blur(8px) brightness(80%);
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.signup.form {
|
2024-04-09 07:56:13 +00:00
|
|
|
/* width: fit-content; */
|
2024-04-09 08:32:26 +00:00
|
|
|
padding-bottom: 3em;
|
|
|
|
padding-top: 3em;
|
2024-04-09 07:56:13 +00:00
|
|
|
max-width: 70%;
|
2024-04-09 08:32:26 +00:00
|
|
|
height: 100%;
|
2024-03-05 22:12:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.signup.container {
|
2024-04-09 08:32:26 +00:00
|
|
|
height: 100vh;
|
|
|
|
padding: 0 2em 0 2em;
|
2024-03-05 22:12:46 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
width: 50%;
|
2024-04-09 08:32:26 +00:00
|
|
|
overflow: auto;
|
2024-03-05 22:12:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.signup.banner {
|
|
|
|
display: block;
|
|
|
|
visibility: visible;
|
|
|
|
content: '';
|
|
|
|
width: 50%;
|
|
|
|
height: 100vh;
|
|
|
|
background: url(/assets/img/banner-tbz-tower-1600x879.jpg) no-repeat center;
|
|
|
|
background-size: cover;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content-container {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.optional {
|
2024-03-06 14:19:33 +00:00
|
|
|
margin-left: 0.2em;
|
2024-03-05 22:12:46 +00:00
|
|
|
opacity: 0.75;
|
|
|
|
}
|
|
|
|
|
|
|
|
.required {
|
2024-03-06 14:19:33 +00:00
|
|
|
margin-left: 0.2em;
|
2024-03-05 22:12:46 +00:00
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button-container {
|
|
|
|
display: flex;
|
|
|
|
gap: 0.5em;
|
2024-04-09 08:32:26 +00:00
|
|
|
margin-bottom: 3em;
|
2024-03-05 22:12:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 800px) {
|
|
|
|
.content-container {
|
|
|
|
flex-direction: column;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.signup.content.container {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.blur {
|
|
|
|
width: 100%;
|
|
|
|
height: 25vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
.signup.banner {
|
|
|
|
width: 100%;
|
|
|
|
height: 25vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
.signup.form {
|
|
|
|
min-width: min-content;
|
|
|
|
max-width: max-content;
|
|
|
|
}
|
2024-04-09 07:56:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.notice {
|
|
|
|
margin: 1em 0 1em 0;
|
|
|
|
padding: 0.5em !important;
|
|
|
|
background-color: #ffbc2160;
|
|
|
|
border-radius: 8px;
|
|
|
|
border: 2px solid #ffbc21ac;
|
2024-03-05 22:12:46 +00:00
|
|
|
}
|