﻿@import url(https://fonts.googleapis.com/css?family=Roboto:300);

html,body{
    width: 100%;
    height: 100%;
}
.login-container{
    width: 100%;
    height: 100%;
}
.login-page {
    display: flex;
    justify-content: center;
    align-items:center;
    width: 100%;
    height: 100%;
    margin: auto;
}
.login-formulary{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:center;
    width: 100%;
    height: 100%;
    gap: 20px;
}
.Footer{
    display: flex;
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
}
.Footer>pre{
    border-radius: 5px 5px 0px 0px;
    width: 100%;
    margin: 0 !important;
    box-shadow: 0px -25px 15px -3px rgba(0,0,0,0.1);
}
.form {
    flex-direction: column;
    gap: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
    background: #FFFF;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}

    .form-input {
        font-family: "Roboto", sans-serif;
        outline: 0;
        background: #f2f2f2;
        width: 100%;
        border: 1px solid #e6e6e6;
        border-radius: 5px;
        padding: 15px;
        font-size: 14px;
        transition: all 0.2s ease-in-out;
    }
    .form-input:hover{
        background: #ffffff;
    }
    .form-input:focus {
        background: #ffffff;
        border: #109cee 1px solid;
    }

        .form-button{
            border-radius: 5px;
            font-family: "Roboto", sans-serif;
            text-transform: uppercase;
            outline: 0;
            background: #109cee;
            width: 100%;
            border: 0;
            padding: 15px;
            color: #FFFFFF;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s ease-in-out;
        }

            .form-button:focus{
                background: #005ef8;
            } .form-button:hover{
                background: #005ef8;
            } 
            .form-button:active {
                background: #005ef8;
            }
.RememberMe-Container{
    width: 100%;
    text-align: start;
    display: flex;
    gap: 10px;
    align-items: center;

}
body {
    background-image: url('../../img/fondo-lineas-colores-3.jpg'); 
    background-repeat: no-repeat;
    background-size: cover;
    font-family: "Roboto", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.RememberMe-CheckBox{
    background-color: #ffffff;
    width: 20px;
    height: 20px;
    appearance: none;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}
.RememberMe-CheckBox:checked{
    background-color: #109ece;
    border: 1px solid #109ece;
}