* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    background-color: #112F6B;
    min-height: 100vh;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #ffffff;
}

.container {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* Logo Section */
.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.logo-image {
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
}

.logo-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.logo-graphic {
    position: relative;
    width: 80px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-shape {
    position: absolute;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.logo-shape-white {
    width: 50px;
    height: 45px;
    background-color: #ffffff;
    left: 0;
    transform: rotate(-20deg);
}

.logo-shape-pink {
    width: 35px;
    height: 30px;
    background-color: transparent;
    border: 3px solid #E91E63;
    border-top: none;
    border-left: none;
    right: 5px;
    top: 10px;
    transform: rotate(15deg);
    border-radius: 0 50% 50% 0 / 0 60% 40% 0;
}

.logo-text {
    text-align: center;
}

.vala-text {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 8px;
}

.separator {
    width: 60px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 8px auto;
}

.kosovo-text {
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Welcome Section */
.welcome-section {
    text-align: center;
    margin-top: 20px;
}

.welcome-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.instructions {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    opacity: 0.95;
}

/* Phone Input Section */
.phone-section {
    width: 100%;
    margin-top: 20px;
}

.phone-input-container {
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 8px;
}

.phone-prefix {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
}

.phone-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    font-family: inherit;
    min-width: 0;
}

.phone-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.phone-input::-webkit-outer-spin-button,
.phone-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.phone-input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

/* Button Section */
.button-section {
    width: 100%;
    margin-top: 40px;
}

.submit-btn {
    width: 100%;
    padding: 18px 30px;
    background-color: #E91E63;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.submit-btn:hover {
    background-color: #C2185B;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* SMS Page Specific Styles */
.sms-input {
    text-align: center;
    font-size: 48px;
    letter-spacing: 8px;
    width: 100%;
}

.resend-section {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.resend-text {
    font-size: 14px;
    color: #ffffff;
    opacity: 0.9;
}

.resend-link {
    color: #E91E63;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.resend-link:hover {
    color: #C2185B;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 480px) {
    .container {
        gap: 30px;
        padding: 10px;
    }

    .welcome-title {
        font-size: 36px;
    }

    .phone-prefix,
    .phone-input {
        font-size: 36px;
    }

    .sms-input {
        font-size: 40px;
        letter-spacing: 6px;
    }

    .vala-text {
        font-size: 28px;
    }

    .instructions {
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .welcome-title {
        font-size: 32px;
    }

    .phone-prefix,
    .phone-input {
        font-size: 32px;
    }

    .sms-input {
        font-size: 36px;
        letter-spacing: 4px;
    }
}
