body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(151deg, #EAFFFE 0%, #CDC9F1 91.48%);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #554E64;
}
.container {
    background-color: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
    max-width: 480px;
    width: 90%;
}
.logo {
    width: 120px;
    height: auto;
    margin-bottom: 24px;
}
h1 {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 16px;
    color: #9238E5;
}
p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 32px;
}
.btn {
    background: linear-gradient(10deg, #6631FF 0%, #A149FB 40%, #ed67f5 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}
.loader {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 4px solid #9238E5;
    width: 40px;
    height: 40px;
    margin: 20px auto;
    animation: spin 1s linear infinite;
}
.success-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} 