/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Contenedor principal */
.container {
    max-width: 375px;
    margin: 0 auto;
    background: white;
    min-height: 100vh;
    position: relative;
}

/* Status bar */
.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 32px 13px 16px;
    background: white;
    border-bottom: 1px solid #e0e0e0;
}

.time {
    color: black;
    font-size: 17px;
    font-family: 'SF Pro Text', sans-serif;
    font-weight: 600;
    line-height: 22px;
}

.status-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    background: white;
    border-bottom: 1px solid #e0e0e0;
    height: 56px;
}

.back-button {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: none;
    border: none;
}

.back-icon {
    width: 24px;
    height: 24px;
    transform: rotate(-90deg);
}

.header-title {
    flex: 1;
    text-align: center;
    color: #020617;
    font-size: 16px;
    font-family: Inter, sans-serif;
    font-weight: 700;
    line-height: 24px;
}

.header-spacer {
    width: 56px;
    height: 56px;
}

/* Contenido principal */
.main-content {
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
}

.description {
    width: 100%;
    max-width: 334px;
    text-align: center;
    color: #64748B;
    font-size: 18px;
    font-family: Rubik, sans-serif;
    font-weight: 400;
    line-height: 1.4;
    padding: 0 8px;
    margin-bottom: 16px;
}

.form-section {
    width: 100%;
    max-width: 343px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field {
    width: 100%;
    padding: 16px;
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-size: 16px;
    font-family: Inter, sans-serif;
    color: #020617;
    transition: border-color 0.3s ease;
}

.form-field:focus {
    outline: none;
    border-color: #94A3B8;
}

.form-field::placeholder {
    color: #64748B;
}

/* Botones */
.button-container {
    position: fixed;
    bottom: 20px;
    left: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.primary-button {
    width: 100%;
    max-width: 343px;
    padding: 16px 24px;
    background: #F1F5F9;
    border: none;
    border-radius: 60px;
    color: #CBD5E1;
    font-size: 16px;
    font-family: Rubik, sans-serif;
    font-weight: 600;
    line-height: 24px;
    cursor: not-allowed;
    text-align: center;
    transition: all 0.3s ease;
}

.primary-button.active {
    background: #ED9832;
    color: white;
    cursor: pointer;
}

.primary-button.active:hover {
    background: #d8852a;
}

/* Responsive */
@media (max-width: 375px) {
    .container {
        width: 100%;
    }
    
    .main-content {
        padding: 20px 12px;
    }
    
    .form-section {
        max-width: 100%;
    }
}

/* Variables de color */
:root {
    --gris: #64748B;
    --fondo-desabilitado: #F1F5F9;
    --txt-desabilitado: #CBD5E1;
    --top-navigation-navigation-text-color: #020617;
    --text-field-text-field-background-color: white;
    --text-field-text-field-border-standard-color: #E2E8F0;
    --text-field-text-field-text-color: #64748B;
}