﻿:root {
    --olive-dark: #7f8f6a;
    --olive-main: #9aa886;
    --olive-light: #c7d1b2;
    --beige-bg: #eef1e6;
    --white: #ffffff;
    --text-dark: #2e2e2e;
    --accent: #c86c5d;
}

* {
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    margin: 0;
    height: 100vh;
    background-color: var(--beige-bg);
}

/* WRAPPER */
.login-wrapper {
    display: flex;
    height: 100vh;
}

/* PANEL IZQUIERDO */
.login-left {
    flex: 1;
    background: linear-gradient( 135deg, var(--olive-dark), var(--olive-main) );
    position: relative;
    color: white;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: -80px;
    left: -100px;
    width: 150%;
    height: 300px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
}

.brand {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.logo {
    font-size: 50px;
    margin-bottom: 10px;
}

.brand h1 {
    font-size: 42px;
    margin: 0;
}

.brand p {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.5;
}

/* PANEL DERECHO */
.login-right {
    flex: 1;
    background-color: var(--beige-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CARD */
.login-card {
    background: var(--white);
    width: 100%;
    max-width: 360px;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

    .login-card h2 {
        margin: 0;
        text-align: center;
        color: var(--olive-dark);
    }

.subtitle {
    text-align: center;
    font-size: 13px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

/* INPUTS */
.login-card input {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 30px;
    /*border: none;
    *//*background-color: var(--olive-light);*/
    border-color:var(--olive-light);
    font-size: 14px;
}

    .login-card input::placeholder {
        color: #5f6b50;
    }

/* LINKS */
.forgot {
    display: block;
    text-align: right;
    font-size: 12px;
    color: var(--olive-dark);
    text-decoration: none;
    margin-bottom: 20px;
}

/* BOTÓN */
.login-card button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 30px;
    /*background: linear-gradient( 135deg, var(--olive-dark), var(--accent) );*/
    background: #c16658;
    color: white;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.2s;
}

    .login-card button:hover {
        transform: translateY(-2px);
    }

/* REGISTRO */
.register {
    margin-top: 20px;
    text-align: center;
    font-size: 13px;
}

    .register a {
        color: var(--accent);
        text-decoration: none;
    }

/* RESPONSIVE */
@media (max-width: 768px) {
    .login-wrapper {
        flex-direction: column;
    }

    .login-left {
        height: 35%;
    }

    .brand {
        padding: 30px;
    }
}


.ingresar-b {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 30px;
    /*background: linear-gradient( 135deg, var(--olive-dark), var(--accent) );*/
    background: #c16658;
    color: white;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.2s;
}

    .ingresar-b:hover {
        transform: translateY(-2px);
    }

.login-footer {
    margin-top: 25px;
    text-align: center;
    font-size: 12px;
    color: #7f8f6a;
}

    .login-footer strong {
        color: #c16658;
        font-weight: 600;
    }