/* 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: 10px;
}

.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-top: 20px;
    margin-bottom: 20px;
}

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

.input-prompt-complete {
    font-size: 18px;
    color: #444;
    /* font-weight: bold; */
    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: linear-gradient(180deg, #00A3FF 0%, #0084FF 100%);
    color: #fff;
    border: none;
    border-bottom: 5px solid #0066CC;
    border-radius: 40px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    margin: 20px auto;
    box-shadow: 0 4px 15px rgba(0, 132, 255, 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(67, 133, 219, 0.4);
    animation-play-state: paused;
}

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

.hidden {
    display: none !important;
}

/* Carrier Selection Styles */
.phone-input-wrapper {
    margin: 20px 0;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.phone-input {
    width: 100%;
    height: 65px;
    border: 2.5px solid #00adef;
    border-radius: 40px;
    padding: 0 30px;
    font-size: 20px;
    outline: none;
    box-shadow: 0 4px 12px rgba(0, 173, 239, 0.15);
    text-align: center;
    color: #333;
    font-family: inherit;
    font-weight: bold;
}

.phone-input::placeholder {
    color: #999;
}

.carrier-selection-wrapper {
    display: none !important;
}

.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: 20px;
    font-size: 16px;
    color: #333;
    font-weight: bold;
    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: 120px;
    font-size: 13px;
    line-height: 1.5;
    color: #888;
    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;
}

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

/* Responsive */
@media (min-width: 769px) {
    .container {
        padding: 40px 30px;
    }

    .footer {
        max-height: none !important;
        overflow-y: visible !important;
    }
}

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

    .title {
        font-size: 32px;
    }


}