/*
	Autor: José Luis Rodriguez
	Mail: jrodriguez@bincodex.com
	Web: https://bincodex.com
	Fecha: 2018-03-04 14:10:04
*/


input[type="text"], input[type="email"], input[type="search"], input[type="submit"], input[type="button"], input[type="password"] {
	/*border-radius: 0px;
	border: 1px solid var(--silver);
	padding: 2px 5px 2px 5px;
	margin: 0px;*/
}

input[type="date"], input[type="number"] {
	/*border-radius: 0px;
	border: 1px solid var(--silver);
	padding: 1px 5px 2px 5px !important;
	margin: 0px;
	text-align: center;*/
}

input[type="submit"], input[type="button"] {
	/*border: 0px solid var(--silver);
	border-radius: 5px;
	min-width: 100px;*/
}

input[type="submit"] {
	/*background: var(--green);
	color: white;*/
}


input[type="checkbox"], input[type="radio"] {
	margin: 0px !important;
	padding: 0px !important;
}


input[type="button"] {
	/*background: var(--blue);
	color: white;*/
}

input:read-only[type="number"] {
	background: var(--readonly);
	color: #2a2a2a;
}



input:read-only[type="text"] {
	background: var(--readonly);
	color: #2a2a2a;
}



input:-moz-read-only[type="number"] {
	background: var(--readonly);
	color: #2a2a2a;
}


input:-moz-read-only[type="text"] {
	background: var(--readonly);
	color: #2a2a2a;
}

input:disabled {
	background: var(--silver);
	color: #d3d7cf;
}

input:-moz-disabled {
	background: var(--silver);
	color: #d3d7cf;
}

select {
	width: 200px;
	border-radius: 0px;
	border: 1px solid var(--silver);
	padding: 2px 5px 2px 5px;
	margin: 0px;
	font-size: 1em;
}

.min_select { width: auto; }

.large-input { width: 250px; }

label { font-size: 1em; }

.nm { text-align: right !important; }

.min-number {
	width: 90px !important;
}


.nowrap {
	white-space: nowrap;
}





/* --- Sección de Foto de Perfil --- */
.fonde-profile-picture-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0 25px 0;
    border-bottom: 1px solid var(--input-border, #e0e0e0);
    margin-bottom: 20px;
}

/* El contenedor circular de la foto */
.fonde-avatar-wrapper {
    position: relative;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 12px;
    background: var(--input-bg, #f8f8f8);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Imagen de perfil */
.fonde-avatar-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Placeholder si no hay foto (usando el degradado del logo) */
.fonde-avatar-placeholder {
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    color: #ffffff;
    font-size: 2.8em;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

/* Botones de acción para la foto (abajo del avatar) */
.fonde-avatar-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Botón pequeño para subir foto (basado en el primario) */
.fonde-btn-upload {
    background: var(--primary-gradient);
    color: #ffffff;
    border: none;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 123, 84, 0.25);
}

.fonde-btn-upload:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 123, 84, 0.35);
}

/* Input de archivo oculto */
#foto_perfil_input {
    display: none;
}

/* Botón para eliminar foto (estilo peligro/rojo) */
.fonde-btn-remove-photo {
    background: transparent;
    color: var(--red, #cc0000);
    border: 1px solid var(--red, #cc0000);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fonde-btn-remove-photo:hover {
    background: var(--red, #cc0000);
    color: #ffffff;
}

/* --- Adaptación para móviles --- */
@media (max-width: 480px) {
    .fonde-avatar-wrapper {
        width: 90px;
        height: 90px;
    }
    .fonde-avatar-placeholder {
        font-size: 2.2em;
    }
}
















/* Contenedor principal del error */
.fonde-error-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 40px 20px;
    background-color: transparent; /* Se adapta al fondo de tu section */
    font-family: 'Poppins', 'Segoe UI', sans-serif;
}

.fonde-error-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 450px;
}

/* Círculo decorativo con el degradado naranja del logo */
.fonde-error-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffb347 0%, #ff7b54 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    box-shadow: 0 8px 25px rgba(255, 123, 84, 0.3);
}

/* Línea blanca simulando el corte del logo */
.fonde-error-icon::after {
    content: '';
    position: absolute;
    width: 70%;
    height: 2px;
    background-color: #ffffff;
    top: 50%;
    left: 15%;
}

/* Textos */
.fonde-error-title {
    font-size: 22px;
    font-weight: 700;
    color: #4a4a4a; /* Gris oscuro del logo */
    margin: 0 0 8px 0;
}

.fonde-error-text {
    font-size: 15px;
    font-weight: 300;
    color: #666666;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

/* Botón de acción */
.fonde-error-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ffb347 0%, #ff7b54 100%);
    color: #ffffff !important;
    text-decoration: none;
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(255, 123, 84, 0.3);
    border: none;
    cursor: pointer;
}

.fonde-error-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 123, 84, 0.4);
}















/* Fin */
