﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-position: top center;
    position: relative;
    /* Safari, Chrome and Opera > 12.1 */
    -webkit-animation: fadein 1.5s;
    /* Firefox < 16 */
    -moz-animation: fadein 1.5s;
    /* Internet Explorer */
    -ms-animation: fadein 1.5s;
    /* Opera < 12.1 */
    -o-animation: fadein 1.5s;
    animation: fadein 1.5s;
}

.environment--status {
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    background-color: #36c786;
    width: 100%;
    height: .4em;
    position: fixed;
    z-index: 9999;
}

.box-warning-new {
    padding: .4em .5em;
    border-radius: 5px;
    width: fit-content;
    font-size: 1rem;
    text-align: center;
    color: white;
    background-color: #36c786;
    position: fixed;
    z-index: 9999;
}

.validation-summary-errors ul li {
    list-style-type: none
}

.header {
    font-size: 1rem;
    color: #28552E;
    margin-bottom: 1.5rem;
    text-align: center;
}

.container {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 30rem;
    height: 25rem;
    background-color: rgba(255, 255, 255, 0.712);
    box-shadow: 0 0 2rem 0 rgba(0, 0, 0, .2);
    border-radius: 7px;
    position: fixed;
    z-index: 1;
    overflow: hidden;
}

    .login .content {
        display: flex;
        padding: 15px;
        text-align: center;
    }

        .login .content p span {
            color: #112413;
            font-weight: bold;
        }

.container-activation {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 80%;
    height: 90vh;
    background-color: rgba(255, 255, 255, 0.712);
    box-shadow: 0 0 2rem 0 rgba(0, 0, 0, .2);
    border-radius: 7px;
    position: fixed;
    z-index: 1;
    overflow: hidden;
    padding: 30px 150px;
}

.container-recovery-password {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 30rem;
    height: 30rem;
    background-color: rgba(255, 255, 255, 0.712);
    box-shadow: 0 0 2rem 0 rgba(0, 0, 0, .2);
    border-radius: 7px;
    position: fixed;
    z-index: 1;
    overflow: hidden;
}

    .container-recovery-password .content {
        display: flex;
        padding: 15px;
        text-align: center;
    }

        .container-recovery-password .content p span {
            color: #112413;
            font-weight: bold;
        }

.container-activation .header h1 {
    margin-bottom: 5px;
}

.container-activation .content {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}

.container-activation .content .subtitle {
    font-size: 1.2rem;
    line-height: 1.3;
    font-weight: bold;
    margin-bottom: 1rem;
}

.container-activation .content .steps p {
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.container-activation .content .steps p span {
    color: #112413;
    font-weight: bold;
}

.form-horizontal {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.form-control {
    color: black;
    padding: .7em;
    font-size: 1.2rem;
    line-height: 2rem;
    border: none;
    width: 400px;
    outline: none;
    border-bottom: 1px solid black;
    background-color: inherit;
    text-align: left;
}

.form-control:focus {
    border-bottom: 2px solid #28552E;
}

 ::placeholder {
    color: rgba(0, 0, 0, 0.384);
    opacity: 1;
}

.text-danger {
    margin-top: 10px;
    font-size: 1.1rem;
    color: #e74c3c;
    display: flex;
    justify-content: center;
}

.btn {
    padding: .7em 0;
    margin-top: 1.6rem;
    border-radius: 5px;
    cursor: pointer;
    width: 400px;
    font-size: 1.2rem;
    border: none;
    color: white;
    background-color: #28552E;
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, .2);
    outline: none;

    transition: filter 0.2s ease;
}

.btn:hover,
.btn:active,
.btn:focus {
    filter: brightness(0.9);
}

.reset {
    width: 400px;
    margin-top: 1.2rem;
}

.reset_pass {
    font-size: 1.125rem;
    text-decoration: none;
    color: #28552E;
}

.background--svg {
    bottom: 0;
    width: 100vw;
    position: fixed;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #112413;
}

.footer p {
    text-align: center;
    font-size: 1rem;
    color: white;
    margin: 0.5rem;
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* Firefox < 16 */

@-moz-keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* Safari, Chrome and Opera > 12.1 */

@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* Internet Explorer */

@-ms-keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* Opera < 12.1 */

@-o-keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media only screen and (max-width: 768px) {
    .environment--status {
        display: inline-block;
        position: relative;
    }
    .box-warning-new {
        position: relative;
        width: 100%;
    }
    .header {
        font-size: .8rem;
    }
    .login {
        width: 30rem;
        height: 25rem;
        width: 400px;
    }
    .form-control {
        font-size: 1rem;
    }
    .btn {
        width: 300px;
    }
    .form-control {
        width: 300px;
    }
    .reset {
        width: 300px;
    }
}