sign up page with captcha

This commit is contained in:
not-nullptr 2024-03-12 08:12:21 +00:00
parent 2cf9d54d24
commit 2ddf2c7d31
14 changed files with 370 additions and 174 deletions

View file

@ -23,6 +23,12 @@ body {
font-family: "DM Sans", sans-serif;
}
html {
scroll-behavior: smooth;
overflow-x: hidden;
scrollbar-gutter: stable;
}
h1,
h2,
h3 {
@ -41,6 +47,17 @@ h3 {
@apply flex w-fit shrink-0 select-none flex-row items-center justify-center gap-4 rounded-xl py-3 pl-7 pr-5 font-bold transition;
}
.button,
.cta-button {
padding: 0.75rem 1.5rem;
}
.button:disabled,
.cta-button:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.button {
border: 2px solid #46424d;
@apply flex w-fit shrink-0 select-none flex-row items-center justify-center gap-4 rounded-xl py-3 pl-7 pr-5 font-bold transition;
@ -62,3 +79,19 @@ h3 {
background: #c3c3cd;
color: black;
}
.input {
border: 2px solid #46424d;
/* @apply w-full rounded-xl px-4 py-3 text-sm font-bold transition; */
width: 100%;
border-radius: 0.75rem;
padding: 0.5rem 1rem;
font-size: 1rem;
font-weight: 600;
transition: all 0.2s;
background-color: transparent;
}
.link {
@apply text-blue-300 underline transition-all ease-out hover:text-blue-100;
}