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

body {
    /* font-family: 'Be Vietnam Pro', sans-serif; */
    font-family: 'Be Vietnam Pro', sans-serif;
    background-color: #fff;
    color: #595959;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    margin: 0;
    /* Blue radial glow simulation for the background edges */
    background: radial-gradient(circle, #ffffff 60%, #e0f2ff 100%);
}

.container {
    width: 100%;
    max-width: 480px;
    background: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

/* Header */
.header {
    /* margin-top: 35px; */
    margin-bottom: 50px;
}

.logo {
    height: 27px;
    width: auto;
}

/* .phone-icon {
    width: 28px;
    height: auto;
    filter: brightness(0) invert(1);
    /* Make it white */
/* } */

/* Content Area */
/* .main-content {
    flex: 1;
} */

.title {
    font-size: 38px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 17px;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.download-icon {
    height: auto;
    object-fit: contain;
    max-width: 100px;
    /* margin-bottom: 40px; */
}

.input-prompt {
    font-size: 19px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 800;
}

.input-prompt-complete {
    font-size: 16px;
    color: #444;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.4;
}

.verification-text {
    font-size: 16px;
    color: #4CAF50;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.5;
    display: none;
    text-align: center;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

.btn-continue {
    display: none;
    width: 100%;
    max-width: 440px;
    height: 65px;
    background: #7AC142;
    color: #fff;
    border: none;
    border-bottom: 5px solid #5a9e2a;
    border-radius: 12px;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    margin: 20px auto;
    box-shadow: 0 4px 15px rgba(122, 193, 66, 0.3);
    transition: transform 0.1s;
    animation: pulse-zoom 1.5s infinite ease-in-out;
}

@keyframes pulse-zoom {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

.btn-continue:hover {
    background: #6ab036;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(122, 193, 66, 0.4);
    animation-play-state: paused;
}

.btn-continue:active {
    transform: scale(0.98);
}

.hidden {
    display: none !important;
}

/* Carrier Selection Styles */
.carrier-selection-wrapper {
    display: flex;
    background: #fff;
    border-radius: 12px;
    border: 2px solid #ddd;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin: 20px 0;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.phone-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 3px;
    border-right: 1.5px solid #ddd;
    width: 90px;
    align-self: stretch;
}

.phone-icon {
    width: 100%;
    height: 100%;
    display: block;
    /* object-fit: cover; */
}

.carrier-selection {
    flex: 1;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 8px 12px;
    gap: 8px;
}

.carrier-button {
    flex: 1;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carrier-button img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.carrier-button:hover {
    transform: translateY(-2px);
}

.carrier-button.active {
    transform: scale(1.05);
}

.carrier-button:active {
    transform: scale(0.95);
}

/* Instructions */
.instructions {
    margin-top: 35px;
    font-size: 17px;
    color: #333;
    /* font-weight: 500; */
    text-align: center;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* .instructions p {
    margin: 8px 0;
} */

/* Footer */
.footer {
    margin-top: 50px;
    font-size: 12px;
    line-height: 1.5;
    color: #a0a0a0;
    text-align: justify;
    max-height: 200px;
    overflow-y: auto;
    padding-right: 5px;
}

.footer p {
    text-align: center;
}

.footer-text-content {
    max-height: 130px;
    overflow-y: auto;
    padding: 8px;
    text-align: justify;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    margin-bottom: 15px;
}

.footer-links {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px 10px;
    text-align: center;
}

.footer-links a {
    color: #a0a0a0;
    text-decoration: underline;
    font-size: 11px;
}

.footer-bottom {
    margin-top: 20px;
    text-align: center;
}

/* Responsive */
@media (max-width: 480px) {
    .container {
        padding: 0px 15px 20px 15px;
        box-shadow: none;
    }

    .title {
        font-size: 32px;
    }

    .download-icon {
        max-width: 35% !important
    }
}