* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    min-height: 100vh;
    
    background: linear-gradient(135deg, white 0%, #F9F0EA 50%, white 100%);

    overflow-x: hidden;
}

/* Background blur effects */
.bg-blur-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 384px;
    height: 384px;
    background: rgba(52, 128, 84, 0.1);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.4;
}

.bg-blur-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 384px;
    height: 384px;
    background: rgba(52, 128, 84, 0.05);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.5;
}

/* Logo */
/*.logo {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s;
}

.logo:hover img {
    transform: scale(1.05);
}

.logo span {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
}
*/
/* Main container */
.container {
    margin-top: 90px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
    z-index: 10;
}

.content {
    width: 100%;
    max-width: 560px;
}

/* Main card */
.card {
    background: white;
    border: 1px solid rgb(152 229 154 / 10%);
    box-shadow: 0 4px 6px -1px rgb(6 85 5 / 53%), 0 2px 4px -1px rgba(0, 102, 255, 0.03);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    /*background: linear-gradient(135deg, #0066FF 0%, #1E3A8A 100%);*/
    background-color: #2a6844;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 0 60px rgb(22 154 46 / 36%);
}

.icon-wrapper svg {
    width: 32px;
    height: 32px;
    color: white;
}

.card h1 {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.card .subtitle {
    color: #6B7280;
    margin-bottom: 32px;
}

/* Steps */
.steps {
    text-align: left;
    margin-bottom: 32px;
}

.step {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: #F9FAFB;
    border-radius: 12px;
    margin-bottom: 12px;
}

.step-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #1dae5a 0%, #1e4623 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.step-content h3 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 14px;
    color: #6B7280;
}

/* Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #1dae5a 0%, #1e4623 100%);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.3s;
    box-shadow: 0 0 60px rgb(22 154 46 / 36%);
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-primary svg {
    width: 20px;
    height: 20px;
}

/* Help section */
.help-section {
    margin-top: 24px;
    padding: 24px;
    background: #f2ffef;
    border-radius: 16px;
    border: 1px solid #DBEAFE;
}

.help-section h3 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.help-section p {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 4px;
}

.help-section a {
    color: #348054;
    text-decoration: none;
    font-weight: 500;
}

.help-section a:hover {
    text-decoration: underline;
}

/* Back link */
.back-link {
    display: block;
    text-align: center;
    margin-top: 24px;
    color: #6B7280;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.back-link:hover {
    color: #111827;
}

/* Responsive */
@media (max-width: 640px) {
    .card {
        padding: 32px 24px;
    }

    .card h1 {
        font-size: 24px;
    }
}