<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #1f262d;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

#email {
    border-color: #1f262d;
    outline: none !important; 
    box-shadow: none;
}

#password {
    border-color: #1f262d;
    outline: none !important;
    box-shadow: none;
}

.logoGorilla {
    height: 120px;
    margin-top: 20px;
    margin-left: 0px;
    opacity: 0.96;
}

.logoGorillaEscrito {
    height: 70px;
    margin-top: -15px;
}

@media only screen and (max-width:576px) {
    .form-container {
        padding-bottom: 15px;
    }

        .form-container .form-icon {
            width: 100%;
            padding: 20px 0;
        }

        .form-container .form-horizontal {
            width: 100%;
            margin: 0;
        }
}

.btn-google-mobile {
    display: block;
}

.btn-google-web {
    display: none;
}

.left-side {
    display: none !important;
}

@media (max-width: 700px) {
    .right-side {
        border-radius: 15px !important;
        width: 100%;
    }
}

@media (min-width: 701px) {
    .btn-google-mobile {
        display: none;
    }

    .btn-google-web {
        display: block;
    }

    .left-side {
        display: flex !important;
    }

    .right-side {
        border-top-right-radius: 15px;
        border-bottom-right-radius: 15px;
    }
}

iframe {
    margin-top: 10px !important;
}

.left-side {
    background-color: #343a40;
    align-items: center;
    justify-content: center;
    height: 85vh;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.right-side {
    background-color: #1F262D;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 85vh;
    flex-direction: column;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.hidden {
    display: none;
}

.logo {
    width: 15rem;
    height: auto;
    margin-bottom: 8%;
}

.logoGorilla {
    height: 220px;
}

.login-form, .register-form {
    width: 100%;
    max-width: 65%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-group {
    width: 100%;
    max-width: 400px;
}

.btn-block {
    width: 100%;
    max-width: 400px;
}

    .btn-block.signin {
        background-color: Green !important;
        border-color: Green !important;
        color: #fff;
        transition: background-color 0.3s ease, border-color 0.3s ease !important;
    }

        .btn-block.signin:hover {
            background-color: #509d2f !important;
            border-color: #509d2f !important;
        }

.labelRemember {
    margin-left: 10px;
    padding-top: 10px;
    color: #bbb;
    font-size: 1em;
    white-space: nowrap;
}

#btnEsqueciSenha:hover {
    color: #ff474c;
}

.remember-forgot-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 10px;
    max-width: 400px;
}

.forgot-pass a {
    display: flex;
    align-items: center;
    color: #bbb;
    margin-left: auto;
    margin-top: 15px;
    font-size: 12px;
}

#btnCadastrar {
    display: block;
    text-align: center;
    margin-top: 5px;
    width: 100%;
    max-width: 400px;
    height: 45px;
    padding: 10px;
    color: #fff;
    background-color: #1F262D;
    border-color: #1F262D;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

    #btnCadastrar:hover {
        background-color: #005b96;
        border-color: #005b96;
        color: #fff;
    }

.footer {
    width: 100%;
    border-top: 1px solid #e5e5e5;
    max-width: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5px;
}

.card-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 20px;
}

.card-custom {
    width: 70%;
    max-width: 1200px;
    display: flex;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
}

.checkbox-container {
    display: flex;
    align-items: center;
}

    .checkbox-container input[type="checkbox"] {
        transform: scale(1.5);
        min-width: 20px;
    }

.register-form .form-control {
    width: 100%;
    margin-bottom: 5px;
    padding: 0 10px;
    box-sizing: border-box;
}

.register-form input {
    width: 100%;
    max-width: 100%;
}

.register-form .btn-save {
    background-color: Green;
    border-color: Green;
    color: white;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

    .register-form .btn-save:hover {
        background-color: #1F262D;
        border-color: #1F262D;
    }

.register-form .btn-cancel, .login-form .btn-cancel {
    background-color: #343a40;
    color: #e5e5e5;
    font-size: 16px;
    border: 1px solid #343a40;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.login-form .btn-cancel {
    margin-top: 5px !important;
}

    .register-form .btn-cancel:hover, .login-form .btn-cancel:hover {
        background-color: #1F262D;
        border-color: #1F262D;
        color: Red;
    }
</pre></body></html>