.register-main {
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 16px 60px;
    background: #f0f2ff;
}

.auth-container {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 32px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.download-guides-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.btn-download-guide {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border: 2px solid #667eea;
    border-radius: 8px;
    color: #667eea;
    background: transparent;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-download-guide:hover {
    background: #667eea;
    color: #ffffff;
}

@media (max-width: 480px) {
    .auth-container {
        padding: 28px 20px;
    }
}