/* ==========================================
   ALDATRACK LOGIN
   ========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{

    --green:#4CAF50;
    --dark:#102015;
    --dark2:#173020;
    --gray:#7d8b82;
    --light:#F5F7F6;
    --white:#ffffff;

}

body{

    font-family:Arial, Helvetica, sans-serif;
    background:#f3f5f4;
    overflow:auto;

}

.auth-page{

    width:100%;
    height:100vh;
    display:grid;
    grid-template-columns:58% 42%;

}

/*======================
LADO IZQUIERDO
========================*/

.auth-left{

    position:relative;

    padding:70px;

    display:flex;

    flex-direction:column;

    justify-content:space-between;

    color:white;

    background:
    linear-gradient(rgba(16,32,21,.78),rgba(16,32,21,.88)),
    url("../assets/ganado-gps.jpeg");

    background-size:cover;

    background-position:center;

}

.brand{

    display:flex;

    align-items:center;

    gap:15px;

}

.brand-icon{

    width:55px;

    height:55px;

    border-radius:18px;

    background:#8BC34A;

    color:#102015;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    font-weight:bold;

}

.brand h1{

    font-size:34px;

}

.brand p{

    color:#d8e5d8;

    margin-top:4px;

}

.eyebrow{

    display:inline-block;

    margin-bottom:20px;

    color:#8BC34A;

    letter-spacing:2px;

    font-weight:bold;

    text-transform:uppercase;

    font-size:13px;

}

.auth-content h2{

    font-size:58px;

    line-height:1.05;

    max-width:650px;

    margin-bottom:25px;

}

.auth-content p{

    font-size:20px;

    color:#dfe9df;

    line-height:1.8;

    max-width:620px;

}

.auth-metrics{

    display:flex;

    gap:25px;

}

.auth-metrics div{

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    border-radius:20px;

    padding:25px;

    width:180px;

}

.auth-metrics strong{

    display:block;

    font-size:32px;

    margin-bottom:8px;

}

.auth-metrics span{

    color:#d6e1d7;

}

/*==================
LOGIN
===================*/

.auth-right{

    display:flex;

    justify-content:center;

    align-items:center;

    background:#F4F7F5;

}

.login-card{

    width:470px;

    background:white;

    border-radius:30px;

    padding:50px;

    box-shadow:0 20px 70px rgba(0,0,0,.08);

}

.mobile-brand{

    display:none;

}

.login-card h2{

    font-size:34px;

    margin-bottom:10px;

    color:#173020;

}

.login-subtitle{

    color:#7a877d;

    margin-bottom:35px;

}

.form-group{

    display:flex;

    flex-direction:column;

    margin-bottom:20px;

}

.form-group label{

    margin-bottom:8px;

    font-weight:bold;

    color:#415142;

}

.form-group input{

    height:56px;

    border-radius:15px;

    border:1px solid #d8e2d8;

    padding:0 18px;

    font-size:16px;

    transition:.25s;

}

.form-group input:focus{

    outline:none;

    border:1px solid #4CAF50;

    box-shadow:0 0 0 4px rgba(76,175,80,.15);

}

.form-options{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:30px;

    font-size:14px;

}

.form-options a{

    color:#4CAF50;

    text-decoration:none;

}

.login-button{

    width:100%;

    height:58px;

    border:none;

    border-radius:18px;

    background:#4CAF50;

    color:white;

    font-size:17px;

    font-weight:bold;

    cursor:pointer;

    transition:.3s;

}

.login-button:hover{

    transform:translateY(-2px);

    background:#419846;

}

.login-message{

    margin-top:18px;

    text-align:center;

    font-weight:bold;

}

.demo-access{

    margin-top:35px;

    background:#F6F8F6;

    border-radius:18px;

    padding:20px;

}

.demo-access p{

    font-weight:bold;

    margin-bottom:10px;

}

.demo-access span{

    display:block;

    color:#5b685e;

    margin-top:4px;

}

/*=====================
RESPONSIVE
======================*/

@media(max-width:1000px){

.auth-page{

grid-template-columns:1fr;

}

.auth-left{

display:none;

}

.mobile-brand{

display:flex;

align-items:center;

gap:12px;

margin-bottom:30px;

}

.login-card{

width:95%;

max-width:500px;

}

}

@media(max-width:600px){

.login-card{

padding:35px;

}

}S
.logo-card{

    width:120px;

    display:block;

    margin:0 auto 25px auto;

}

.login-logo img,
.auth-image img,
.login-card img {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  max-height: 260px;
  margin: 0 auto 28px;
  object-fit: contain;
}
img {
  max-width: 100%;
}