﻿@font-face {
    font-family: 'ArchitectsDaughter';
    src: url('../fonts/ArchitectsDaughter.ttf') format('truetype');
}

@font-face {
    font-family: 'Lanenar';
    src: url('../fonts/LANENAR_.ttf') format('truetype');
}

@font-face {
    font-family: 'Penelope';
    src: url('../fonts/Penelope Anne.ttf') format('truetype');
}

body {
    font-family: 'ArchitectsDaughter';
    background-image: url("portada.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-color: transparent;
    background-size: cover;
    min-height: 100vh;
}

.img-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}
    .img-logo img {
        width: 300px;
        height:auto;
    }

hr {
    border: 0;
    border-radius: 4px;
    height: 12px;
    box-shadow: inset 0 12px 12px -12px #c6a668;
    margin-top: -17px;
    position: relative;
}

.login {
    box-sizing:content-box;
    overflow: hidden;
    background-color: white;
    padding: 40px 30px 30px 30px;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: -webkit-transform 300ms, box-shadow 300ms;
    -moz-transition: -moz-transform 300ms, box-shadow 300ms;
    transition: transform 300ms, box-shadow 300ms;
    /*box-shadow: 0px 3px 7px 1px rgba(0,0,0,0.22);*/
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
}

    .login::before, .login::after {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        border-top-left-radius: 40%;
        border-top-right-radius: 45%;
        border-bottom-left-radius: 35%;
        border-bottom-right-radius: 40%;
        z-index: -1;
    }

    .login::before {
        left: 40%;
        bottom: -130%;
        background-color: white;
    }

.login::after {
    left: 35%;
    bottom: -125%;
    background-color: white;
    -webkit-animation: wawes 7s infinite;
    -moz-animation: wawes 7s infinite;
    animation: wawes 7s infinite;
}

.login-user {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 28px 0px 0px 0px;
}

.login-pass {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0px;
}

    .login-user img, .login-pass img {
        width: 25px;
        height: 25px;
    }

input {
    font-family: 'ArchitectsDaughter';
    display: block;
    border-radius: 5px;
    font-size: 16px;
    background: white;
    width: 70%;
    border: 1px solid #c6a668;
    padding: 10px 10px;
    margin: 0 5px;
    right: 20%
}

 input:focus {
    border: none;
}

        .login > input:active {
            border: 1px solid #9d814a !important;
        }

.login .content-button {
    display:flex;
    justify-content:center;
    align-items:center
}
.button-login {
    font-family: 'Lanenar';
    letter-spacing: 1px;
    cursor: pointer;
    color: rgba(242,242,242,1);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 900;
    width: 130px;
    border: 0;
    padding: 10px 0;
    margin-top: 10px;
    margin-left: -5px;
    border-radius: 5px;
    background-color: #c6a668;
    transition: 0.2s ease-in;
}

    .button-login:hover {
        background-color: #f2f2f2;
        color: #9d814a;
        border: 1px solid #9d814a;
        
    }

.text-danger{
    text-decoration:none;
    list-style:none;
    background-image:url("error.svg");
    background-size:contain;
    background-repeat:no-repeat;
    height:20px;
    background-position:left;
}

.button-login:active{
    outline: 0;
}

input:active, input:focus {
    outline-color: #c6a668 !important;
}

