14 lines
423 B
SCSS
14 lines
423 B
SCSS
@reference "../index.scss";
|
|
|
|
.login_container {
|
|
@apply flex min-h-screen flex-col items-center justify-center;
|
|
}
|
|
|
|
.login_card {
|
|
@apply flex h-fit w-[95%] min-w-[300px] flex-col justify-around rounded-[3rem] bg-[linear-gradient(180.00deg,_rgba(239,251,194,0.53),rgb(206,232,251)_100%)] p-7 shadow-[0px_4px_4px_0px_rgba(0,0,0,0.25)] md:w-[350px];
|
|
}
|
|
|
|
.login_card_name {
|
|
@apply mb-8 text-center text-2xl font-semibold;
|
|
}
|