:root {
    --primary-color: #D1005D;
    --text-gray: #6A717C;
    --text-dark: #2E3641;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #fff;
    color: var(--text-dark);
    min-height: 100vh;
}

.mobile-container {
    max-width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.logo {
    height: 32px;
}

.close-btn {
    font-size: 24px;
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    padding: 8px;
}

.content {
    flex: 1;
}

h1 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.help-icon {
    width: 20px;
    height: 20px;
    background: #F5F6FA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-gray);
}

.link-primary {
    color: var(--primary-color);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 32px;
}

.input-wrapper {
    margin-bottom: 24px;
}

input {
    width: 100%;
    padding: 16px;
    border: 1px solid #D7D9E0;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
}

input::placeholder {
    color: var(--text-gray);
}

.btn-continue {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 24px;
    padding: 14px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    margin-bottom: 48px;
}

.divider {
    text-align: center;
    margin-bottom: 16px;
    font-size: 20px;
    color: var(--text-dark);
}

.link-help {
    color: var(--primary-color);
    text-decoration: none;
    display: block;
    text-align: center;
    margin-bottom: 24px;
}

.btn-govpt {
    width: 100%;
    background: white;
    border: 1px solid #3453B4;
    color: #3453B4;
    border-radius: 24px;
    padding: 14px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
}

.footer {
    margin-top: auto;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #E5E5E5;
}

.text-muted {
    color: var(--text-gray);
    display: block;
    margin-bottom: 8px;
}

@media (min-width: 1024px) {
    .mobile-container {
        max-width: 440px;
        margin: 0 auto;
    }
} 