﻿/* Contenedor principal */
.main {
    padding: 30px 0;
    background-color: #f4f4f4;
}

/* Espaciado entre header y footer */
.page-header {
    background-color: #f4f4f4;
    padding: 3rem 0;
    text-align: center;
    margin-bottom: 4rem; /* Espaciado extra */
}

    .page-header h1 {
        font-size: 2.5rem; /* Tamaño más grande */
        font-weight: 700;
        color: #222529;
    }

/* Breadcrumb */
.breadcrumb-nav {
    color: #000;
    border-bottom: 1px solid #dfdfdf;
    margin-bottom: 3rem;
}

.breadcrumb {
    margin-bottom: 0;
    padding: 1rem 0;
    background-color: transparent;
    border-radius: 0;
}

.breadcrumb-item {
    font-weight: 700;
    font-size: 12px; /* Tamaño de fuente mayor */
    letter-spacing: -0.01em;
    line-height: 24px;
    text-transform: uppercase;
}

    .breadcrumb-item + .breadcrumb-item {
        padding-left: 1.6rem;
    }

        .breadcrumb-item + .breadcrumb-item:before {
            content: ">";
            font-size: 1.2rem;
            padding-right: 0.5rem;
            color: #777;
        }

/* Login container */
.login-container {
    background-color: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

/* Formulario */
form {
    width: 100%;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1.3rem; /* Aumentar tamaño de etiqueta */
}

.form-input {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #222529;
    background-color: #f8f9fa;
}

span.required {
    color: #e74c3c;
    margin-left: 0.2rem;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    margin-bottom: 25px;
}

/* Checkbox personalizado */
.custom-control {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.custom-control-input {
    position: absolute;
    left: 0;
    top: 0;
    width: 1rem;
    height: 1rem;
    margin: 0;
    cursor: pointer;
}

.custom-control-label {
    margin-left: 1.8rem;
    font-size: 1rem; /* Tamaño más grande */
    color: #555;
}

/* Links */
.forget-password {
    font-size: 1.9rem; /* Aumentar tamaño */
    text-decoration: none;
    color: #222529;
}

    .forget-password:hover {
        text-decoration: underline;
    }

/* Botón iniciar sesión */
.btn {
    transition: none; /* Eliminar animación hover */
    text-transform: uppercase;
    padding: 1.2rem;
    border-radius: 4px;
    font-size: 1.6rem;
    font-weight: 700;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.btn-dark {
    border-color: #222529;
    background-color: #222529;
    color: #fff;
    box-shadow: none;
}
.feature-box.border-top-primary .feature-box-content {
    border-top: 4px solid #000;
    padding: 30px 20px 10px 20px;
}
.feature-box-content {
    color: #7b858a;
    font-size: 1.5rem;
    line-height: 1.9;
    padding-left: 10px;
    padding-right: 10px;
}
.feature-box.border-top-primary {
    border-bottom: 1px solid #dfdfdf;
    border-left: 1px solid #ececec;
    border-right: 1px solid #ececec;
    box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.05);
}
.btn-primary {
    border-color: #000 ;
    background-color: #000 ;
    color: #fff ;
    box-shadow: none;
}
.form-footer .form-footer-right {
    margin-right: 0 !important;
    margin-left: auto;
}

    /*.btn-dark:hover {
        background-color: #222529;*/ /* Sin cambio de color */
        /*border-color: #222529;
    }*/
