/* Archivo común para estilos de usuario */
/* Sistema de colores unificado */
:root {
    --COLOR-1: #FFE6C8;
    --COLOR-2: #133121;
    --COLOR-3: #F27017;
    --TEXTO: #606060;
}

/* Estilos base para páginas de usuario */
.page {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--COLOR-1);
    min-height: 75vh;
    padding: 20px 0;
    font-family: "Azo Sans Test", Arial, sans-serif;
}

/* Botones comunes */
.btn-submit, .btn-register {
    background-color: var(--COLOR-3);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-submit:hover, .btn-register:hover {
    background-color: #e66310;
    transform: translateY(-1px);
}

/* Enlaces de usuario */
.user-links a {
    color: var(--COLOR-2);
    font-size: 12px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.user-links a:hover {
    color: var(--COLOR-3);
    text-decoration: underline;
}

/* Botones de importación */
.btn-import {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-import:hover {
    background-color: #218838;
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .page {
        padding: 15px;
    }
}

@media (max-width: 1200px) {
    .page {
        min-height: 70vh;
        padding: 15px;
    }
}

@media (max-width: 992px) {
    .page {
        min-height: 65vh;
        padding: 10px;
    }
    
    .btn-submit, .btn-register {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .page {
        min-height: 60vh;
        padding: 10px;
    }
    
    .user-links a {
        font-size: 11px;
    }
    
    .btn-import {
        padding: 6px 12px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .page {
        min-height: 55vh;
        padding: 8px;
    }
    
    .btn-submit, .btn-register {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .user-links a {
        font-size: 10px;
    }
}