* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #eef5fb;
    color: #0f172a;
    line-height: 1.5;
    min-height: 100vh;
}

.container {
    min-height: 100vh;
    padding: 24px 16px;
}

.form-wrapper {
    max-width: 384px;
    margin: 0 auto;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 10px;
}

.title {
    color: #dc2626;
    font-size: 20px;
    font-weight: 600;
}

.branding {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 24px;
}

.icon {
       width: 200px;
    height: 200px;
    margin-bottom: 12px;
    opacity: 1;
}

.oxford-text {
    text-align: center;
}

.content-text {
    font-size: 14px;
    color: #28286e;
    margin-bottom: 4px;
}

.oxford-main {
    font-weight: bold;
    font-size: 16px;
    color: #0f172a;
}

.oxford-sub {
    font-size: 12px;
    color: #28286e;
}

/* Card */
.card1 {
       border-radius: 8px;
    padding: 24px;
}

.card-title {
        font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: #28286e;
}

.pricing {
    font-size: 14px;
    color: #28286e;
    text-align: center;
    margin-bottom: 16px;
}

/* Input Section */
.input-section {
    margin-bottom: 24px;
}

.step {
    display: none;
}

.step.active {
    display: block;
}

.input-label {
    font-size: 14px;
    color: #28286e;
    margin-bottom: 12px;
        font-weight: 700;
}

.phone-input-wrapper {
    display: flex;
    align-items: center;
}

.country-code {
    font-size: 14px;
    color: #0f172a;
    margin-right: 8px;
}

.input {
    flex: 1;
    height: 40px;
    width: 100%;
    border-radius: 6px;
    border: 1.5px solid #28286e;
    background: white;
    padding: 8px 12px;
    font-size: 16px;
    transition: all 0.2s;
        text-align: center;
    letter-spacing: 4px;
}

.input:focus {
    outline: none;
    border-color: #46dc46;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

.input::placeholder {
    color: #9ca3af;
}

.pin-input {
    text-align: center;
    font-size: 18px;
    font-family: monospace;
    letter-spacing: 0.1em;
}

/* Loading */
.loading-content {
    text-align: center;
    padding: 32px 0;
}

.spinner {
    width: 32px;
    height: 32px;
    border: 2px solid #e5e7eb;
    border-bottom-color: #46dc46;
    border-radius: 50%;
    margin: 0 auto 16px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-text {
    font-size: 14px;
    color: #28286e;
}

/* Buttons */
.main-button {
    width: 100%;
    background: #46dc46;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 12px;
    transition: all 0.2s;
}

.main-button:hover:not(:disabled) {
    background: #46dc46;
}

.main-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cancel-button {
    width: 100%;
    background: none;
    border: none;
    color: #28286e;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    padding: 8px;
        text-decoration: underline;
}

.cancel-button:hover {
    color: #475569;
}

/* Footer */
.footer {
    margin-top: 32px;
}

.disclaimer {
    font-size: 12px;
    color: #28286e;
    line-height: 1.6;
    margin-bottom: 16px;
}

.disclaimer p {
    margin-bottom: 12px;
}

.disclaimer p:last-child {
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding-top: 16px;
}

.footer-link {
    background: none;
    border: none;
    color: #28286e;
    font-size: 14px;
    text-decoration: underline;
    cursor: pointer;
}

.footer-link:hover {
    color: #46dc46;
}

/* Responsive */
@media (max-width: 640px) {
    .container {
        padding: 16px 12px;
    }
    
    .card1 {
        padding: 20px;
    }
}