@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

* {
    margin: 0;
    padding: 0;

    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #fff;
}

p {
    cursor: pointer;
    font-weight: 600;
    color: #000000;
}

h1 {
    font-size: 1.8em;
    color: #274146;
    padding: 0px 0px 0px 0px;
}

h2 {
    font-size: 1.4em;
    color: #274146;
}

.center-content {
    display: flex;
    justify-content: center;
}

input {
    width: 80%;
    height: 30px;
    border: none;
    border-bottom: 1px solid silver;
    outline: none;
    font-weight: 600;
    color: #1c1c1c;
    padding-left: 3px;
    display: inline-block;
}

button {
    cursor: pointer;
    width: 120px;
    height: 35px;
    border: none;
    border-radius: 5px;
}

button:hover {
    opacity: 0.8;
    background: #f1b24a;
    color: #ffffff;
}

body {
    width: 100%;
    height: 100vh;
    background: #cecdcd;
    /*background-image: url('/media/login/img/fondo2.jpg');*/
    /*background-repeat: no-repeat;*/
    background-size: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}

img {
    width: 50%;
    height: 50%;
}

#container {
    width: 320px;
    height: 580px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 6px -1px #000000;
    box-shadow: 0px 0px 6px -1px #000000;
    background: #274146;

    display: flex;
    align-items: center;
}

#container .bannerLogin {
    width: 580px;
    height: 580px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    background: #274146;

    display: none;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

#container .box-login {
    width: 580px;
    height: 580px;
    border-radius: 10px;
    background: #fff;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.box-login .box {
    TOP: 0px;
    width: 80%;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.box .social {
    width: 240px;
    height: 53px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.social img {
    cursor: pointer;
}

.g-recaptcha {
    display: inline-block;
}

@media (min-width: 1024px) {
    #container {
        width: 902px;
        justify-content: space-between;
    }

    #container .bannerLogin {
        display: flex;
    }

    #container .box-login {
        width: 385px;
        border-radius: 10px 10px 10px 0px;
    }
}

.reset-hover a {
    color: #f1b24a;
    font-size: 16px;
    text-decoration: none;
}

.reset-hover a:hover {
    color: #f1b24a;
}

.social {
    font-size: 15px;
    text-align: center;
    line-height: 24px;
    color: white;
    padding: 0px;
}

.social a {
    color: #ffffff;
    /*font-size: 200px;*/
    text-decoration: none;
}

.social a:hover {
    color: #f1b24a;
}

.social i {
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
}

.social i:hover {
    color: #f1b24a;
}

.reset-hover a {
    color: #ff0c30;
    font-size: 16px;
    text-decoration: none;
}

.reset-hover a:hover {
    color: #f1b24a;
}

.contact-image {
    font-size: 20px;
}