﻿html {
    height: 100%;
}

body {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #e6e6e6;
    /* scrollbar-color: #f2f2f2 #e2e2e2; */
}

.contenedor-login {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    background-image: url('../imagenes/Login.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 1080px;
    height: 650px;
    border: 2px solid #FFC908;
    box-sizing: border-box;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 290px;
    border-bottom-right-radius: 50px;
}

.columna {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: space-around;
    width: 382px;
    height: 100%;
    padding: 2.25rem;
    margin-right: 2rem;
    box-sizing: border-box;
}

.login {
    display: flex;
    width: 100%;
    flex-flow: column nowrap;
    align-items: flex-start;
    padding: 1.25rem;
    box-sizing: border-box;
    background-color: #fff;
}

.logotipo {
    display: flex;
    width: 100%;
}

.Rainde {
    display: flex;
    width: 200px;
}

h1 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.25rem;
    color: #4d4d4d;
    font-weight: 400;
    line-height: normal;
    align-self: center;
}

    h1 span {
        font-weight: 700;
    }

label {
    font-family: 'Roboto', sans-serif;
    color: #808080;
    margin-bottom: 1rem;
}

input[type='text'] {
    display: flex;
    width: 100%;
    height: 2rem;
    padding: 4px 10px;
    margin-bottom: 1rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    color: #808080;
    border: 1px solid #ccc;
    border-radius: 0.625rem;
    box-sizing: border-box;
    cursor: pointer;
    margin-right: 0.625rem;
    background-color: #f2f2f2;
}

    input[type='text']:focus {
        outline: 1px solid #ffc908;
        border: 0;
        background-color: #fff;
    }

input[type='password'] {
    display: flex;
    width: 100%;
    height: 2rem;
    padding: 4px 10px;
    margin-bottom: 1rem;
    color: #808080;
    border: 1px solid #ccc;
    border-radius: 0.625rem;
    box-sizing: border-box;
    cursor: pointer;
    margin-right: 0.625rem;
    background-color: #f2f2f2;
}

    input[type='password']:focus {
        outline: 1px solid #ffc908;
        border: 0;
        background-color: #fff;
    }

input[type='submit'] {
    display: flex;
    flex-direction: row;
    align-self: flex-end;
    justify-content: center;
    width: 8rem;
    height: 2rem;
    padding: 4px 10px;
    border: 0;
    border-radius: 0.625rem;
    box-sizing: border-box;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    color: #000;
    background-color: #ffc908;
    transition: color .5s;
    transition: background-color .5s;
}

    input[type='submit']:hover {
        color: #fff;
        background-color: #00A99D;
    }

.error {
    color: darkred;
}
