47 lines
906 B
SCSS
47 lines
906 B
SCSS
@import './_shared.scss';
|
|
|
|
.page-container {
|
|
@include page-container;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.card {
|
|
@include glass-card;
|
|
@include tech-border;
|
|
padding: 50px 30px;
|
|
width: 100%;
|
|
text-align: center;
|
|
|
|
.title {
|
|
font-size: 32px;
|
|
font-weight: bold;
|
|
@include neon-text($primary-purple);
|
|
display: block;
|
|
margin-bottom: 16px;
|
|
letter-spacing: 2px;
|
|
}
|
|
|
|
.desc {
|
|
font-size: 16px;
|
|
color: $text-secondary;
|
|
display: block;
|
|
margin-bottom: 50px;
|
|
}
|
|
|
|
.btn-register {
|
|
@include neon-button($primary-green);
|
|
background: linear-gradient(90deg, rgba(0, 185, 107, 0.2), rgba(0, 240, 255, 0.2));
|
|
border: 1px solid $primary-green;
|
|
border-radius: 30px;
|
|
height: 56px;
|
|
line-height: 56px;
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
width: 80%;
|
|
margin: 0 auto;
|
|
letter-spacing: 4px;
|
|
}
|
|
}
|