﻿/* RESET GENERAL */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* BODY p */

body.login {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg,#e4e4e4,#cfcfcf);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* CONTENEDOR LOGIN */

.login-container {
    width: 350px;
    max-width: 90%;
}


/* FORMULARIO */

.login-form {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0px 20px 60px rgba(0,0,0,0.2);
    border: 1px solid #268a7a;
}


/* TITULOS */

.welcome-lines {
    text-align: center;
}

.welcome-line-1 {
    font-size: 38px;
    font-weight: 700;
    color: #268a7a;
}

.welcome-line-2 {
    margin-top: 8px;
    font-size: 16px;
    color: #666;
}


/* AREA INPUTS */

.input-area {
    margin-top: 30px;
}


/* CONTENEDOR INPUT */

.form-inp {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: 0.3s;
    width: 100%;
    background: white;
}


    /* ICONO */

    .form-inp i {
        margin-right: 10px;
        color: #777;
        min-width: 18px;
    }


    /* INPUT */

    .form-inp input {
        border: none;
        outline: none;
        width: 100%;
        font-size: 14px;
        background: transparent;
    }


/* COMPATIBLE CON BOOTSTRAP */

.form-control {
    width: 100%;
    border: none;
    background: transparent;
    box-shadow: none;
}


/* EFECTO FOCUS */

.form-inp:focus-within {
    border-color: #268a7a;
    box-shadow: 0 0 5px rgba(43,153,98,.3);
}


/* BOTON */

.submit-button-cvr {
    margin-top: 20px;
}

#submit-button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #268a7a;
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

    #submit-button:hover {
        background: #217a4f;
    }


/* LOGO */

.logo-area {
    text-align: center;
    margin-top: 5px;
}

.logo-area img {
    width: 90%;
}
.logo-area2 {
    text-align: center;
    margin-top: 5px;
}
.logo-area2 img {
    width: 50%;
}


/* HR */

hr {
    margin-top: 15px;
    border: none;
    border-top: 1px solid #e0e0e0;
}


/* MENSAJES ERROR */

.error-msg {
    color: #d93025;
    font-size: 12px;
    margin-bottom: 8px;
}


/* INPUT ERROR */


/* VALIDACIONES */

.field-validation-valid {
    display: none;
}

.field-validation-error {
    display: block;
}


/* RESPONSIVE */

@media (max-width: 500px) {

    .login-container {
        width: 90%;
    }
}
