/* Para escritorio grande */
@media (min-width: 1024px) {
    /*  */
    @font-face {
    font-family: 'coolvetica';
    src: url('../../font/coolvetica.otf') format('opentype');
    }

    html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    }

    body{
        background-color: #EEEEEE;
    }

    /* INICIO DEL FLAG COLOR */
    .flagColors{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: auto;
    }

    .lineColor{
        display:flex;
        flex-direction: row;
        width: 100%;
        border: 3px solid #66BB6A;
        margin-bottom: 1px;
    }
    /* FIN DEL FLAG COLOR */


    /* INICIO DEL REGISTER HEADER */
    .login-header{
        display:flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        height: 60px;
        background-color: white;
        border-top:1px solid #395D3B;
        padding-left: 10px;
        padding-top: 10px;
    }

    .login-header-brand{
        display:flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        width: 40%;
        height: 60px;
        /* border:1px solid blue; */
        margin-left: 10%;
    }

    .login-header-brand>a{
        display:flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        width: 100%;
        height: auto;
        text-decoration: none;
        cursor: pointer;
    }

    .login-header-brand>a>img{
        width: auto;
        height: 48px;
    }

    .login-header-links{
        display:flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        width: 40%;
        height: 60px;
        /* border:1px solid red; */
        background-color: transparent;
        margin-right: 10%;
        padding-right: 0;
    }

    .login-header-links>span{
        font-size: 1em;
        color: black;
        font-weight:500;
        margin-right: 10px;
    }

    .login-header-links>a{
        text-decoration: none;
        background-color:#F44336;
        font-size: 0.9em;
        color: white;
        font-weight: bold;
        padding: 8px 8px;
        border-bottom:none;
        border-radius: 25px;
    }

    .login-header-links>a:hover{
        text-decoration: none;
        background-color:white;
        border: 1px solid #F44336;
        font-size: 0.9em;
        color: black;
        font-weight: bold;
        padding: 8px 8px;
        border-bottom:1px solid #F44336;
        border-radius: 25px;
    }
    /* FIN DEL LOGIN HEADER */


    /* INICIO DEL login CONTENT */

    .login-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center; 
        padding: 1rem;          
        flex-grow: 1;
        overflow: none;
        /* overflow: auto; */
    }

    /* .login-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    flex-grow: 1;
    overflow: auto;
    background: linear-gradient(to bottom right, #e6f0ff, #ffffff);
    } */


    #formLogin {
        background-color: #ffffff;
        padding: 2rem;
        border-radius: 1rem;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        width: 100%;
        max-width: 400px;
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }

    #formLogin h2 {
        text-align: center;
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #333;
    }

    /* Campos de entrada */
    #formLogin input[type="text"],
    #formLogin input[type="email"],
    #formLogin input[type="password"] {
        width: 100%;
        padding: 0.75rem 1rem;
        border: 1px solid #ccc;
        border-radius: 0.75rem;
        font-size: 1rem;
        outline: none;
        transition: border-color 0.3s ease;
    }

    #formLogin input:focus {
        border-color: green;
    }
    /* 
    #formLogin-subtitle{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: auto;
        font-size: 0.8em;
        font-weight: normal;
        color:#555;
        border: 1px solid red;
    } */

    .welcomeFormDiv button {
        width: 100%;
        padding: 0.75rem;
        /* background: linear-gradient(to right, #4a6cf7, #3b82f6); */
        border:2px solid green;
        background-color: white;
        /* border: none; */
        border-radius: 999px;
        /* color: white; */
        color: black;
        font-size: 1.2em;
        font-weight: bold;
        /* font-size: 1rem; */
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .welcomeFormDiv button:hover {
        /* background: linear-gradient(to right, #3b82f6, #2563eb); */
        /* background: linear-gradient(to right, #34D399, #10B981); */
        background:none;
        background-color: #66BB6A;
        cursor: pointer;
    }

    /* Enlaces del formulario */
    #formLogin a {
        color: #3b82f6;
        text-decoration: none;
        font-size: 0.9rem;
    }

    #formLogin a:hover {
        text-decoration: underline;
    }

    /* Pie de formulario */
    #formLogin .form-footer {
        text-align: center;
        font-size: 0.9rem;
        color: #555;
    }


    /* FIN DEL REGISTER CONTENT */

}