﻿@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;500&display=swap');

* {
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
}

html,
body {
    margin: 0;
}
.text-dangerT {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    margin-top: 40px;
    width: 100%;
    display: block;
    
    border-radius: 5px;
}

.full-screen-container {
    background-image: url('./img/carroGris.png')!important;
    height: 100vh;
    width: 100vw;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    /*background-color: rgb(0,0, 0,0.2);*/
    background: #fff !important;
    padding: 50px 30px;
    min-width: 400px;
    width: 50%;
    max-width: 600px;
}

.login-title {
    color: #fff;
    text-align: center;
    margin: 0;
    margin-bottom: 40px;
    font-size: 2.5em;
    font-weight: normal;
}

.input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

    .input-group label {
        /*color: #fff;*/
        font-weight: bold;
        font-size: 1.5em;
        margin-bottom: 7px;
       
    }

    .input-group input {
        font-size: 1.5em;
        padding: 0.1em 0.25em;
       /* background-color: #57423e;*/
        /*border: 1px solid transparent;*/
        outline: none;
        border-radius: 5px;
        /*color: #fff;
        font-weight: lighter;*/
    }

        .input-group input:focus {
           /* border: 2px solid transparent;*/
        }

.login-button {
    padding: 10px 30px;
    width: 100%;
    border-radius: 5px;
    background: #2287f2;
    outline: none;
    font-size: 1.5em;
    color: #fff;
    font-weight: lighter;
    margin-top: 20px;
    cursor: pointer;
   /* border: 2px solid transparent;*/
}

    .login-button:hover {
        background-color: #2287f2;
    }

    .login-button:focus {
        background-color: #2287f2;
    }
