61 lines
1019 B
CSS
61 lines
1019 B
CSS
.card {
|
|
background: var(--glass-bg);
|
|
border: 1px solid var(--glass-border);
|
|
border-radius: 24px;
|
|
padding: 40px 32px;
|
|
width: 100%;
|
|
max-width: 700px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.logo {
|
|
margin-bottom: 32px;
|
|
}
|
|
|
|
.logo img {
|
|
height: 80px;
|
|
}
|
|
|
|
.iconWrapper {
|
|
width: 80px;
|
|
height: 80px;
|
|
border-radius: 50%;
|
|
background: linear-gradient(135deg, var(--grad-edge), var(--grad-center));
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: var(--highlight);
|
|
margin-bottom: 24px;
|
|
box-shadow: 0 0 32px rgba(0, 212, 255, 0.15);
|
|
}
|
|
|
|
.description {
|
|
color: var(--text-secondary);
|
|
font-size: 2rem;
|
|
text-align: center;
|
|
margin: 0;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.buttonWrapper {
|
|
margin-top: 32px;
|
|
width: 100%;
|
|
}
|
|
|
|
.error {
|
|
color: var(--error);
|
|
font-size: 13px;
|
|
text-align: center;
|
|
margin-top: 12px;
|
|
}
|
|
|
|
@media (max-width: 560px) {
|
|
.card {
|
|
padding: 32px 20px;
|
|
border-radius: 0;
|
|
background: transparent;
|
|
border: none;
|
|
}
|
|
} |