@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root{
    --verde:#0B5D2A;
    --verde2:#063B1B;
    --amarillo:#F4C300;
    --negro:#101820;
    --gris:#F4F6F9;
    --blanco:#FFFFFF;
    --texto:#2D3436;
}

/* ================= RESET ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat',sans-serif;
    background:var(--gris);
    color:var(--texto);
    overflow-x:hidden;
}

/* ================= HEADER ================= */

.site-header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:999;

    background:rgba(16,24,32,.88);

    backdrop-filter:blur(10px);

    border-bottom:1px solid rgba(255,255,255,.08);
}

.nav-container{

    width:92%;
    max-width:1300px;

    margin:auto;

    height:90px;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.brand{

    display:flex;
    align-items:center;
    gap:15px;

    text-decoration:none;
}

.brand img{

    width:65px;
    height:65px;

    object-fit:contain;

    background:white;

    border-radius:12px;

    padding:5px;
}

.brand strong{

    display:block;

    color:white;

    font-size:28px;

    font-weight:900;

    letter-spacing:1px;
}

.brand span{

    color:#ccc;

    font-size:12px;

    font-weight:500;
}

.main-nav{

    display:flex;
    align-items:center;
    gap:28px;
}

.main-nav a{

    color:white;

    text-decoration:none;

    font-size:14px;

    font-weight:800;

    text-transform:uppercase;

    transition:.3s;

    position:relative;
}

.main-nav a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-10px;

    width:0;
    height:3px;

    background:var(--amarillo);

    transition:.3s;
}

.main-nav a:hover{

    color:var(--amarillo);
}

.main-nav a:hover::after{

    width:100%;
}

/* ================= HERO ================= */

.hero-home{

    min-height:100vh;

    background:
    linear-gradient(rgba(0,0,0,.72),rgba(0,0,0,.78)),
    url('./../img/arbitros-banner.png');

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;

    padding:140px 8% 80px;
}

.hero-container{

    width:100%;
    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:60px;

    align-items:center;
}

.hero-left{

    color:white;
}

.hero-badge{

    display:inline-block;

    padding:12px 20px;

    border-radius:50px;

    background:rgba(244,195,0,.12);

    color:var(--amarillo);

    border:1px solid rgba(244,195,0,.25);

    font-weight:800;

    margin-bottom:25px;
}

.hero-left h1{

    font-size:110px;

    line-height:.9;

    color:var(--amarillo);

    font-weight:900;

    text-shadow:0 10px 25px rgba(0,0,0,.5);
}

.hero-left h2{

    font-size:38px;

    margin-top:20px;

    color:white;

    font-weight:700;
}

.hero-left p{

    margin-top:25px;

    font-size:19px;

    line-height:1.9;

    color:#e2e2e2;

    max-width:650px;
}

/* ================= BOTONES ================= */

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    margin-top:40px;
}

.btn-primary,
.btn-secondary{

    display:inline-flex;

    align-items:center;
    gap:10px;

    padding:16px 30px;

    border-radius:12px;

    text-decoration:none;

    font-weight:800;

    text-transform:uppercase;

    transition:.3s;
}

.btn-primary{

    background:var(--amarillo);

    color:#111;

    box-shadow:0 10px 30px rgba(244,195,0,.35);
}

.btn-primary:hover{

    transform:translateY(-5px);
}

.btn-secondary{

    border:2px solid rgba(255,255,255,.6);

    color:white;
}

.btn-secondary:hover{

    background:white;

    color:#111;
}

/* ================= GLASS CARD ================= */

.glass-card{

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(16px);

    border-radius:30px;

    padding:45px;

    color:white;

    box-shadow:0 25px 60px rgba(0,0,0,.35);
}

.glass-card h3{

    font-size:30px;

    color:var(--amarillo);

    margin-bottom:30px;
}

.glass-card ul{

    list-style:none;
}

.glass-card li{

    display:flex;
    align-items:center;
    gap:12px;

    margin-bottom:18px;

    font-size:17px;

    line-height:1.5;
}

.glass-card li i{

    color:var(--amarillo);

    font-size:18px;
}

/* ================= SECTION ================= */

.section{

    padding:110px 8%;

    background:white;
}

.section-header{

    text-align:center;

    max-width:850px;

    margin:auto auto 70px;
}

.section-header span{

    color:var(--amarillo);

    font-size:14px;

    font-weight:900;

    letter-spacing:3px;
}

.section-header h2{

    font-size:52px;

    color:var(--verde);

    margin:15px 0;
}

.section-header p{

    font-size:18px;

    line-height:1.9;

    color:#666;
}

/* ================= CARDS ================= */

.cards{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:30px;
}

.card{

    background:white;

    border-radius:30px;

    padding:45px 35px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    transition:.35s;

    position:relative;

    overflow:hidden;
}

.card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:8px;

    background:linear-gradient(90deg,var(--verde),var(--amarillo));
}

.card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 60px rgba(0,0,0,.12);
}

.icon-box{

    width:90px;
    height:90px;

    border-radius:24px;

    background:linear-gradient(135deg,var(--verde),var(--verde2));

    display:flex;
    align-items:center;
    justify-content:center;

    color:white;

    font-size:38px;

    margin-bottom:25px;
}

.card h3{

    color:var(--verde);

    font-size:30px;

    margin-bottom:18px;
}

.card p{

    color:#666;

    line-height:1.9;
}

/* ================= STATS ================= */

.stats{

    padding:100px 8%;

    background:
    linear-gradient(135deg,var(--verde2),var(--verde));

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap:30px;
}

.stat-box{

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.1);

    border-radius:30px;

    padding:45px;

    text-align:center;

    color:white;

    backdrop-filter:blur(8px);
}

.stat-box h2{

    font-size:58px;

    color:var(--amarillo);

    margin-bottom:10px;
}

.stat-box p{

    font-size:18px;

    font-weight:600;
}

/* ================= SERVICES ================= */

.services{

    padding:110px 8%;

    background:var(--gris);
}

.services-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(260px,1fr));

    gap:30px;
}

.service-card{

    background:white;

    border-radius:30px;

    padding:45px 35px;

    text-align:center;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    transition:.35s;
}

.service-card:hover{

    transform:translateY(-10px);
}

.service-card i{

    font-size:55px;

    color:var(--amarillo);

    margin-bottom:25px;
}

.service-card h3{

    color:var(--verde);

    font-size:28px;

    margin-bottom:15px;
}

.service-card p{

    color:#666;

    line-height:1.8;
}

/* ================= FOOTER ================= */

.footer{

    background:var(--negro);

    color:white;

    padding:90px 8% 30px;
}

.footer-grid{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:45px;
}

.footer-logo{

    width:120px;

    margin-bottom:20px;

    background:white;

    padding:10px;

    border-radius:16px;
}

.footer h3{

    color:var(--amarillo);

    margin-bottom:20px;

    font-size:24px;
}

.footer p{

    color:#ccc;

    line-height:2;
}

.social{

    display:flex;

    gap:15px;
}

.social a{

    width:52px;
    height:52px;

    border-radius:16px;

    background:var(--verde);

    color:white;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    font-size:22px;

    transition:.3s;
}

.social a:hover{

    background:var(--amarillo);

    color:#111;

    transform:translateY(-5px);
}

.copyright{

    text-align:center;

    margin-top:55px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.1);

    color:#999;
}

/* ================= AUTH ================= */

.auth-container{

    min-height:100vh;

    background:
    linear-gradient(rgba(0,0,0,.78),rgba(0,0,0,.78)),
    url('./../img/arbitros-banner.png');

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:40px 20px;
}

.auth-box{

    width:100%;
    max-width:500px;

    background:white;

    border-radius:30px;

    padding:45px;

    box-shadow:0 30px 70px rgba(0,0,0,.35);
}

.registro-box{

    max-width:700px;
}

.auth-logo{

    width:120px;

    display:block;

    margin:auto auto 25px;
}

.auth-box h2{

    text-align:center;

    color:var(--verde);

    font-size:34px;

    margin-bottom:30px;
}

.input-group{

    margin-bottom:20px;
}

.input-group label{

    display:block;

    margin-bottom:8px;

    font-weight:700;
}

.input-group input,
.input-group select,
textarea{

    width:100%;

    padding:16px;

    border:1px solid #ddd;

    border-radius:14px;

    outline:none;

    font-size:15px;

    transition:.3s;
}

.input-group input:focus,
.input-group select:focus,
textarea:focus{

    border-color:var(--verde);

    box-shadow:0 0 0 4px rgba(11,93,42,.12);
}

.btn-auth{

    width:100%;

    padding:17px;

    border:none;

    border-radius:14px;

    background:var(--verde);

    color:white;

    font-size:17px;

    font-weight:800;

    cursor:pointer;

    transition:.3s;
}

.btn-auth:hover{

    background:var(--verde2);
}

.success,
.error{

    padding:15px;

    border-radius:12px;

    margin-bottom:20px;
}

.success{

    background:#dfffe6;

    color:#167c35;
}

.error{

    background:#ffe2e2;

    color:#b32121;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1000px){

    .hero-container{

        grid-template-columns:1fr;
    }

    .hero-left{

        text-align:center;
    }

    .hero-left p{

        margin:auto;
        margin-top:25px;
    }

    .hero-buttons{

        justify-content:center;
    }

    .hero-left h1{

        font-size:70px;
    }
}

@media(max-width:768px){

    .nav-container{

        flex-direction:column;

        height:auto;

        padding:15px 0;
    }

    .main-nav{

        flex-wrap:wrap;

        justify-content:center;

        gap:18px;

        padding-bottom:10px;
    }

    .hero-home{

        padding-top:180px;
    }

    .hero-left h1{

        font-size:50px;
    }

    .hero-left h2{

        font-size:26px;
    }

    .section-header h2{

        font-size:38px;
    }
}
/* ================= DASHBOARD PROFESIONAL ================= */

.dashboard{
    display:flex;
    min-height:100vh;
    background:#eef2f5;
}

.dashboard-sidebar{
    width:285px;
    background:linear-gradient(180deg,#101820,#063B1B);
    color:white;
    position:fixed;
    left:0;
    top:0;
    height:100vh;
    padding:30px 0;
    box-shadow:10px 0 30px rgba(0,0,0,.18);
}

.dashboard-logo{
    text-align:center;
    padding:0 25px 30px;
    border-bottom:1px solid rgba(255,255,255,.12);
    margin-bottom:25px;
}

.dashboard-logo img{
    width:105px;
    background:white;
    padding:10px;
    border-radius:18px;
    margin-bottom:15px;
}

.dashboard-logo h2{
    color:#F4C300;
    font-size:26px;
    font-weight:900;
}

.dashboard-sidebar ul{
    list-style:none;
}

.dashboard-sidebar ul li a{
    display:flex;
    align-items:center;
    gap:14px;
    padding:17px 28px;
    color:white;
    text-decoration:none;
    font-weight:700;
    transition:.25s;
    border-left:5px solid transparent;
}

.dashboard-sidebar ul li a i{
    width:25px;
    font-size:18px;
    color:#F4C300;
}

.dashboard-sidebar ul li a:hover,
.dashboard-sidebar ul li a.active{
    background:rgba(255,255,255,.1);
    border-left:5px solid #F4C300;
}

.dashboard-content{
    margin-left:285px;
    width:calc(100% - 285px);
    padding:35px;
}

.topbar{
    background:white;
    border-radius:24px;
    padding:28px 32px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0 15px 40px rgba(0,0,0,.07);
    margin-bottom:30px;
}

.topbar h1{
    color:#0B5D2A;
    font-size:32px;
    font-weight:900;
}

.topbar p{
    color:#666;
    margin-top:6px;
}

.topbar-user{
    background:#0B5D2A;
    color:white;
    padding:13px 20px;
    border-radius:14px;
    font-weight:800;
}

.dashboard-cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
    gap:25px;
    margin-bottom:30px;
}

.dashboard-card{
    background:white;
    border-radius:24px;
    padding:30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0 15px 40px rgba(0,0,0,.07);
    border-bottom:6px solid #0B5D2A;
    transition:.3s;
}

.dashboard-card:hover{
    transform:translateY(-6px);
}

.dashboard-card h3{
    color:#666;
    font-size:16px;
    margin-bottom:10px;
}

.dashboard-card h2{
    color:#0B5D2A;
    font-size:42px;
    font-weight:900;
}

.dashboard-card i{
    font-size:48px;
    color:#F4C300;
}

.dashboard-panel{
    background:white;
    border-radius:24px;
    padding:35px;
    box-shadow:0 15px 40px rgba(0,0,0,.07);
}

.dashboard-panel h2{
    color:#0B5D2A;
    font-size:28px;
    margin-bottom:15px;
}

.dashboard-panel p{
    color:#666;
    line-height:1.8;
}

.table-container{
    background:white;
    border-radius:24px;
    padding:28px;
    box-shadow:0 15px 40px rgba(0,0,0,.07);
    overflow-x:auto;
}

.tabla{
    width:100%;
    border-collapse:collapse;
}

.tabla thead{
    background:#0B5D2A;
    color:white;
}

.tabla th,
.tabla td{
    padding:16px;
    text-align:left;
    border-bottom:1px solid #eee;
}

.tabla th:first-child{
    border-radius:14px 0 0 14px;
}

.tabla th:last-child{
    border-radius:0 14px 14px 0;
}

.badge{
    background:#F4C300;
    color:#111;
    padding:8px 14px;
    border-radius:30px;
    font-weight:800;
    font-size:13px;
}

.btn-dashboard{
    background:#0B5D2A;
    color:white;
    padding:12px 18px;
    border-radius:12px;
    text-decoration:none;
    font-weight:800;
    display:inline-block;
}

.btn-dashboard:hover{
    background:#063B1B;
}

.btn-edit,
.btn-delete{
    width:38px;
    height:38px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    color:white;
    text-decoration:none;
    margin-right:5px;
}

.btn-edit{
    background:#2474C6;
}

.btn-delete{
    background:#C92A2A;
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:20px;
}

.mt-30{
    margin-top:30px;
}

@media(max-width:900px){
    .dashboard{
        display:block;
    }

    .dashboard-sidebar{
        position:relative;
        width:100%;
        height:auto;
    }

    .dashboard-content{
        margin-left:0;
        width:100%;
        padding:22px;
    }

    .topbar{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }
}
/* ================= NUEVO DASHBOARD ARBICOTA ================= */

.admin-layout{
    min-height:100vh;
    display:flex;
    background:#eef2f6;
    font-family:'Montserrat',sans-serif;
}

.admin-sidebar{
    width:290px;
    min-height:100vh;
    position:fixed;
    left:0;
    top:0;
    background:
    linear-gradient(180deg,#101820 0%,#063B1B 100%);
    padding:28px 20px;
    color:white;
    box-shadow:12px 0 35px rgba(0,0,0,.18);
}

.admin-brand{
    text-align:center;
    padding-bottom:28px;
    margin-bottom:20px;
    border-bottom:1px solid rgba(255,255,255,.12);
}

.admin-brand img{
    width:105px;
    height:105px;
    object-fit:contain;
    background:white;
    border-radius:24px;
    padding:10px;
    box-shadow:0 15px 35px rgba(0,0,0,.25);
}

.admin-brand h2{
    margin-top:16px;
    color:#F4C300;
    font-size:28px;
    font-weight:900;
    letter-spacing:1px;
}

.admin-brand p{
    font-size:13px;
    color:#d6d6d6;
    margin-top:4px;
}

.admin-menu{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.admin-menu a{
    display:flex;
    align-items:center;
    gap:14px;
    color:white;
    text-decoration:none;
    padding:15px 16px;
    border-radius:16px;
    font-weight:800;
    font-size:14px;
    transition:.25s;
}

.admin-menu a i{
    width:24px;
    color:#F4C300;
    font-size:18px;
}

.admin-menu a:hover,
.admin-menu a.active{
    background:rgba(255,255,255,.13);
    transform:translateX(4px);
}

.admin-menu a.logout{
    margin-top:15px;
    background:rgba(201,42,42,.25);
}

.admin-main{
    margin-left:290px;
    width:calc(100% - 290px);
    padding:34px;
}

.admin-top{
    background:
    linear-gradient(135deg,#0B5D2A,#063B1B);
    border-radius:30px;
    padding:34px;
    color:white;
    display:flex;
    align-items:center;
    justify-content:space-between;
    box-shadow:0 18px 45px rgba(0,0,0,.12);
    margin-bottom:28px;
    position:relative;
    overflow:hidden;
}

.admin-top::after{
    content:"";
    position:absolute;
    right:-80px;
    top:-80px;
    width:260px;
    height:260px;
    background:rgba(244,195,0,.18);
    border-radius:50%;
}

.admin-top span{
    color:#F4C300;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:13px;
}

.admin-top h1{
    font-size:36px;
    font-weight:900;
    margin:8px 0;
}

.admin-top p{
    color:#e4e4e4;
}

.admin-user-card{
    background:rgba(255,255,255,.13);
    border:1px solid rgba(255,255,255,.18);
    border-radius:22px;
    padding:18px 22px;
    display:flex;
    align-items:center;
    gap:15px;
    z-index:2;
}

.admin-user-card i{
    font-size:34px;
    color:#F4C300;
}

.admin-user-card strong{
    display:block;
    font-size:16px;
}

.admin-user-card small{
    color:#ddd;
}

.admin-stats{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
    gap:24px;
    margin-bottom:28px;
}

.admin-stat-card{
    background:white;
    border-radius:26px;
    padding:26px;
    display:flex;
    align-items:center;
    gap:18px;
    box-shadow:0 14px 38px rgba(0,0,0,.07);
    transition:.25s;
}

.admin-stat-card:hover{
    transform:translateY(-6px);
}

.stat-icon{
    width:66px;
    height:66px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    color:white;
}

.stat-icon.green{
    background:#0B5D2A;
}

.stat-icon.yellow{
    background:#F4C300;
    color:#111;
}

.stat-icon.blue{
    background:#2474C6;
}

.stat-icon.dark{
    background:#101820;
}

.admin-stat-card span{
    color:#70777f;
    font-size:14px;
    font-weight:800;
}

.admin-stat-card h2{
    color:#101820;
    font-size:38px;
    font-weight:900;
    margin-top:4px;
}

.admin-grid{
    display:grid;
    grid-template-columns:1.4fr .8fr;
    gap:24px;
}

.admin-panel{
    background:white;
    border-radius:28px;
    padding:30px;
    box-shadow:0 14px 38px rgba(0,0,0,.07);
}

.panel-title{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:25px;
}

.panel-title h2{
    color:#0B5D2A;
    font-size:26px;
    font-weight:900;
}

.panel-title p{
    color:#777;
    margin-top:5px;
}

.panel-title > i{
    font-size:40px;
    color:#F4C300;
}

.summary-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.summary-grid div{
    background:#f4f6f9;
    border-radius:22px;
    padding:26px;
    text-align:center;
    border-bottom:5px solid #0B5D2A;
}

.summary-grid strong{
    display:block;
    color:#0B5D2A;
    font-size:40px;
    font-weight:900;
}

.summary-grid span{
    color:#666;
    font-weight:800;
    font-size:14px;
}

.quick-actions{
    display:grid;
    grid-template-columns:1fr;
    gap:14px;
}

.quick-actions a{
    background:#f4f6f9;
    color:#101820;
    border-radius:18px;
    padding:18px;
    text-decoration:none;
    font-weight:900;
    display:flex;
    align-items:center;
    gap:14px;
    transition:.25s;
}

.quick-actions a i{
    width:44px;
    height:44px;
    border-radius:14px;
    background:#0B5D2A;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
}

.quick-actions a:hover{
    background:#0B5D2A;
    color:white;
    transform:translateX(5px);
}

@media(max-width:950px){

    .admin-layout{
        display:block;
    }

    .admin-sidebar{
        position:relative;
        width:100%;
        min-height:auto;
    }

    .admin-main{
        margin-left:0;
        width:100%;
        padding:22px;
    }

    .admin-top{
        flex-direction:column;
        text-align:center;
        gap:20px;
    }

    .admin-grid,
    .summary-grid{
        grid-template-columns:1fr;
    }
}
/* ================= LOGIN PREMIUM ================= */

.login-page{

    min-height:100vh;

    display:grid;

    grid-template-columns:1.1fr .9fr;
}

.login-left{

    position:relative;

    background:
    linear-gradient(rgba(0,0,0,.72),rgba(0,0,0,.82)),
    url('./../img/arbitros-banner.png');

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;
}

.login-left-content{

    position:relative;

    z-index:2;

    text-align:center;

    color:white;

    max-width:520px;

    padding:40px;
}

.login-left-content img{

    width:150px;

    background:white;

    padding:14px;

    border-radius:25px;

    margin-bottom:30px;

    box-shadow:0 20px 45px rgba(0,0,0,.35);
}

.login-badge{

    display:inline-block;

    background:rgba(244,195,0,.12);

    border:1px solid rgba(244,195,0,.25);

    color:#F4C300;

    padding:12px 20px;

    border-radius:50px;

    font-weight:800;

    margin-bottom:25px;
}

.login-left-content h1{

    font-size:85px;

    color:#F4C300;

    font-weight:900;

    line-height:.9;

    margin-bottom:20px;
}

.login-left-content p{

    color:#e3e3e3;

    line-height:2;

    font-size:18px;
}

/* RIGHT */

.login-right{

    background:#f4f6f9;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:40px;
}

.login-box{

    width:100%;
    max-width:470px;

    background:white;

    border-radius:35px;

    padding:45px;

    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.login-header{

    margin-bottom:35px;
}

.login-header h2{

    color:#0B5D2A;

    font-size:40px;

    font-weight:900;

    margin-bottom:10px;
}

.login-header p{

    color:#777;

    line-height:1.7;
}

/* INPUTS */

.input-icon{

    position:relative;
}

.input-icon i{

    position:absolute;

    left:18px;
    top:50%;

    transform:translateY(-50%);

    color:#0B5D2A;
}

.input-icon input{

    padding-left:50px !important;
}

/* BUTTON */

.btn-login{

    width:100%;

    border:none;

    background:
    linear-gradient(135deg,#0B5D2A,#063B1B);

    color:white;

    padding:18px;

    border-radius:16px;

    font-size:16px;

    font-weight:900;

    cursor:pointer;

    margin-top:10px;

    transition:.3s;
}

.btn-login:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 35px rgba(11,93,42,.25);
}

.btn-login i{

    margin-right:8px;
}

/* FOOTER */

.login-footer{

    margin-top:30px;

    text-align:center;
}

.login-footer a{

    color:#0B5D2A;

    text-decoration:none;

    font-weight:800;
}

/* RESPONSIVE */

@media(max-width:950px){

    .login-page{

        grid-template-columns:1fr;
    }

    .login-left{

        min-height:350px;
    }

    .login-left-content h1{

        font-size:60px;
    }
}

@media(max-width:600px){

    .login-box{

        padding:35px 25px;
    }

    .login-header h2{

        font-size:32px;
    }

    .login-left-content h1{

        font-size:45px;
    }
}
/* ================= REGISTRO PREMIUM ================= */

.register-page{

    min-height:100vh;

    display:grid;

    grid-template-columns:1fr 1fr;
}

/* LEFT */

.register-left{

    position:relative;

    background:
    linear-gradient(rgba(0,0,0,.72),rgba(0,0,0,.82)),
    url('./../img/arbitros-banner.png');

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;
}

.register-left-content{

    position:relative;

    z-index:2;

    text-align:center;

    color:white;

    max-width:550px;

    padding:40px;
}

.register-left-content img{

    width:150px;

    background:white;

    padding:14px;

    border-radius:25px;

    margin-bottom:30px;

    box-shadow:0 20px 45px rgba(0,0,0,.35);
}

.register-badge{

    display:inline-block;

    background:rgba(244,195,0,.12);

    border:1px solid rgba(244,195,0,.25);

    color:#F4C300;

    padding:12px 20px;

    border-radius:50px;

    font-weight:800;

    margin-bottom:25px;
}

.register-left-content h1{

    font-size:72px;

    line-height:.95;

    color:#F4C300;

    font-weight:900;

    margin-bottom:20px;
}

.register-left-content p{

    color:#e2e2e2;

    line-height:2;

    font-size:18px;
}

/* RIGHT */

.register-right{

    background:#f4f6f9;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:40px;
}

.register-box{

    width:100%;
    max-width:700px;

    background:white;

    border-radius:35px;

    padding:45px;

    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.register-header{

    margin-bottom:35px;
}

.register-header h2{

    color:#0B5D2A;

    font-size:42px;

    font-weight:900;

    margin-bottom:10px;
}

.register-header p{

    color:#777;

    line-height:1.8;
}

/* BUTTON */

.btn-register{

    width:100%;

    border:none;

    background:
    linear-gradient(135deg,#0B5D2A,#063B1B);

    color:white;

    padding:18px;

    border-radius:16px;

    font-size:16px;

    font-weight:900;

    cursor:pointer;

    margin-top:10px;

    transition:.3s;
}

.btn-register:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 35px rgba(11,93,42,.25);
}

.btn-register i{

    margin-right:8px;
}

/* FOOTER */

.register-footer{

    margin-top:30px;

    text-align:center;
}

.register-footer a{

    color:#0B5D2A;

    text-decoration:none;

    font-weight:800;
}

/* RESPONSIVE */

@media(max-width:1100px){

    .register-page{

        grid-template-columns:1fr;
    }

    .register-left{

        min-height:350px;
    }

    .register-left-content h1{

        font-size:55px;
    }
}

@media(max-width:700px){

    .register-box{

        padding:35px 25px;
    }

    .register-header h2{

        font-size:32px;
    }

    .register-left-content h1{

        font-size:42px;
    }
}
/* ================= ESTADOS INSCRIPCIONES ================= */

.badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:8px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    color:#fff;
    min-width:110px;
}

.badge-pendiente{
    background:#f39c12;
}

.badge-aprobado{
    background:#27ae60;
}

.badge-rechazado{
    background:#e74c3c;
}

/* ================= BOTONES TABLA ================= */

.btn-edit,
.btn-delete{
    width:38px;
    height:38px;
    border-radius:10px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    margin:2px;
    transition:.3s;
}

.btn-edit{
    background:#27ae60;
}

.btn-delete{
    background:#e74c3c;
}

.btn-edit:hover,
.btn-delete:hover{
    transform:scale(1.05);
    opacity:.9;
}