@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

body {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    min-height: 100vh;
    font-family: 'Ubuntu', sans-serif;
    padding: 50px 15px 20px 15px;
    position: relative;
}

/* Mobile responsiveness - reduce spacing when viewport has vertical scroll */
@media (max-width: 768px) {
    body {
        padding: 20px 10px 10px 10px;
    }
}

/* Further reduce spacing on very small screens */
@media (max-width: 480px) {
    body {
        padding: 15px 10px 10px 10px;
    }
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.main-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 672px;
    margin: 80px auto 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/* Mobile responsiveness - reduce top margin on mobile */
@media (max-width: 768px) {
    .main-card {
        margin: 20px auto 0;
    }
}

/* Further reduce margin on very small screens */
@media (max-width: 480px) {
    .main-card {
        margin: 10px auto 0;
    }
}

.header-section {
    text-align: center;
    padding: 30px;
}

/* Mobile responsiveness - reduce header padding */
@media (max-width: 768px) {
    .header-section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .header-section {
        padding: 15px;
    }
}

.logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    max-width: 100px;
    max-height: 100px;
    margin: 0 auto 50px;
    display: block;
}

/* Mobile responsiveness - reduce logo bottom margin and increase width */
@media (max-width: 768px) {
    .logo img {
        margin: 0 auto 25px;
        max-width: 120px;
        max-height: 120px;
    }
}

/* Further reduce margin but keep larger size on very small screens */
@media (max-width: 480px) {
    .logo img {
        margin: 0 auto 15px;
        max-width: 110px;
        max-height: 110px;
    }
}

.brand-name {
    font-size: 18px;
    font-weight: 600;
    color: #1e40af;
    margin: 0 0 30px 0;
}

.welcome-title {
    color: #1e40af;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}

/* Mobile responsiveness - adjust title margins and font size */
@media (max-width: 768px) {
    .welcome-title {
        font-size: 26px;
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .welcome-title {
        font-size: 24px;
        margin-bottom: 6px;
    }
}

.subtitle {
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 0;
    margin-top: 0;
}

.content-section {
    padding: 0 30px 30px 30px;
    margin-top: 16px;
}

/* Mobile responsiveness - reduce content section spacing */
@media (max-width: 768px) {
    .content-section {
        padding: 0 20px 20px 20px;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 0 15px 15px 15px;
        margin-top: 8px;
    }
}

.success-alert {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.success-title {
    color: #166534;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.success-title .iconify {
    color: #16a34a;
    font-size: 2rem !important;
}

.success-text {
    color: #15803d;
    font-size: 15px;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
}

.info-alert {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    text-align: center;
}

.info-title {
    color: #1e40af;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.info-text {
    color: #1d4ed8;
    font-size: 15px;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
}

.info-title .iconify {
    color: #2563eb;
    font-size: 2rem !important;
}

.steps-row {
    margin-bottom: 25px;
    display: flex;
    gap: 16px;
}

.step-box {
    background: #fef2f2;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    flex: 1;
}

.step-icon {
    color: #ff6633;
    font-size: 2rem !important;
    margin-bottom: 8px;
}

.step-title {
    font-weight: 600;
    color: #374151;
    font-size: 15px;
    margin-bottom: 3px;
}

.step-text {
    color: #6b7280;
    font-size: 12px;
    line-height: 1.3;
    margin: 0;
}

.benefits-section {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.benefits-title {
    text-align: center;
    color: #374151;
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 12px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.benefit-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 4px;
    font-weight: 400;
}

.benefit-check {
    color: #16a34a;
    font-size: 16px;
    margin-right: 8px;
    flex-shrink: 0;
}

.benefit-text {
    color: #374151;
    margin: 0;
}

.buttons-section {
    margin-bottom: 20px;
}

.btn {
    border-radius: 6px;
    padding: 10px;
    font-weight: 400;
    font-size: 15px;
    width: 100%;
    margin-bottom: 4px;
    transition: background-color 0.2s;
}

.btn-main {
    background: #ff6633;
    border: none;
    color: white;
}

.btn-main:hover {
    background: #f67348;
    color: white;
}

.btn-home {
    background: white;
    border: 1px solid #001580;
    color: #001580;
}

.btn-home:hover {
    border-color: #001580;
    color: #001580;
}

.contact-info {
    text-align: center;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.4;
}

.contact-info a {
    color: #001580;
    font-weight: 500;
}

.contact-info strong {
    color: #374151;
}

.required {
    color: #dc2626;
}

.formError {
    font-size: 12px !important;
    color: #f46a6a !important;
    display: none;
    margin-top: 1px;
}