@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

.gradient-animation-god {
    background: linear-gradient(90deg,
                                rgba(255, 0, 0, 1) 0%,
                                rgba(255, 154, 0, 1) 10%,
                                rgba(208, 222, 33, 1) 20%,
                                rgba(79, 220, 74, 1) 30%,
                                rgba(63, 218, 216, 1) 40%,
                                rgba(47, 201, 226, 1) 50%,
                                rgba(28, 127, 238, 1) 60%,
                                rgba(95, 21, 242, 1) 70%,
                                rgba(186, 12, 248, 1) 80%,
                                rgba(251, 7, 217, 1) 90%,
                                rgba(255, 0, 0, 1) 100%
                            );
    background-size: 400% 400%;
    animation: gradient 30s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    height: 100vh;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


@keyframes aparecerDesaparecer {
    0% {
        opacity: 0; /* Início da animação, invisível */
    }
    50% {
        opacity: 1; /* Meio da animação, visível */
    }
    100% {
        opacity: 0; /* Fim da animação, invisível novamente */
    }
}

.content-frase {
    opacity: 0;
    transition: opacity 2s; /* Adicione uma transição de opacidade de 1 segundo */
}

body{
   font-family: 'Montserrat'; 
}

.login-page, .register-page {
    -ms-flex-align: center;
    align-items: center;
    background-color: rgb(12 12 12 / 90%);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100vh;
    -ms-flex-pack: center;
    justify-content: center;
}

.login-logo, .register-logo {
    font-size: 2.1rem;
    font-weight: 300;
    margin-bottom: 0px;
    text-align: center;
    background: transparent;
    padding: 10px;
    border-radius: 10px 10px 0px 0px;
}

.login-box, .register-box {
    width: 90%;
    border-radius: 20px;
    padding: 10px;
    background-color: #111;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.login-card-body, .register-card-body {
    background-color: transparent;
    border-top: 0;
    color: #666;
    padding: 20px;
    border-radius: 20px;
}

.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: transparent;
    background-clip: border-box;
    border: 0 solid rgba(0,0,0,.125);
    border-radius: 0 0 10px 10px;
    box-shadow: none;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(2.25rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ddd;
    border-radius: 0.25rem;
    box-shadow: inset 0 0 0 transparent;
    transition: .6s;
    outline: none;
}

.input-group-append {
    margin-left: -1px;
    background: #ddd;
    border-radius: 0 20px 20px 0px;
    color: #333;
}

.input-group-text {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.375rem 0.75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ddd;
    border-radius: 0.25rem;
}

.login-card-body .input-group .input-group-text, .register-card-body .input-group .input-group-text {
    background-color: transparent;
    border-bottom-right-radius: 20px !important;
    border-left: 0;
    border-top-right-radius: 20px !important;
    color: #333;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.input-group:not(.has-validation)>.input-group-complement:not(:last-child)>.input-group-text {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    box-shadow: none !important;
    transition: none;
    background: #dddddd;
    padding-top: 5px;
    position: relative;
}

.btn-primary {
    color: #fff;
    background-color: #1CCF7D;
    border-color: #1CCF7D;
    box-shadow: none;
    transition: .6s;
    border-radius: 20px;
}


.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #1CCF7D;
    border-color: #1CCF7D;
}

.btn-primary.focus, .btn-primary:focus {
    color: #fff;
    background-color: #1CCF7D;
    border-color: #1CCF7D;
    box-shadow: 0 0 0 0 rgb(225 83 97 / 50%);
}

.btn-primary:hover {
    color: #fff;
    background-color: #1CCF7D;
    border-color: #1CCF7D;
    border-radius: 20px;
    box-shadow: rgb(28 207 125 / 38%) 0px 0px 7px 4px !important;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border: 1px solid #1CCF7D;
    outline: 0;
    box-shadow: rgb(28 207 125 / 38%) 0px 0px 7px 4px !important;
}

.login-card-body .input-group .form-control:focus~.input-group-append .input-group-text, .login-card-body .input-group .form-control:focus~.input-group-prepend .input-group-text, .register-card-body .input-group .form-control:focus~.input-group-append .input-group-text, .register-card-body .input-group .form-control:focus~.input-group-prepend .input-group-text {
    border: 1px solid #1ccf7d !important;
    box-shadow: rgb(28 207 125 / 38%) 0px 0px 7px 4px !important;
    transition: .6s;
}

.register-card-body .input-group .form-control:focus~.input-group-complement .input-group-text {
    border-top: 1px solid #1ccf7d !important;
    border-bottom: 1px solid #1ccf7d !important;
}

.login-card-body .input-group .form-control:focus~.input-group-append .input-group-text, 
.login-card-body .input-group .form-control:focus~.input-group-prepend .input-group-text, 
.register-card-body .input-group .form-control:focus~.input-group-append .input-group-text, 
.register-card-body .input-group .form-control:focus~.input-group-prepend .input-group-text {
    border-color: #8092ff;
}

.login-card-body .input-group .form-control:focus~.input-group-append .input-group-text, .login-card-body .input-group .form-control:focus~.input-group-prepend .input-group-text, .register-card-body .input-group .form-control:focus~.input-group-append .input-group-text, .register-card-body .input-group .form-control:focus~.input-group-prepend .input-group-text {
    border-color: #8092ff;
}

.row-oficina {
    margin-right: 0px;
    margin-left: 0px;
    background: url('/dist/img/background_oficina.png');
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
}

.oficina {
    background: url('/dist/img/background_gradient2.png') no-repeat;
    background-size: cover;
    background-position: inherit;
    overflow: hidden;
}

#toast-container > div {
    min-width: 300px !important;
    max-width: 600px !important;
    width: auto !important;
}

.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label, .input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label::after, .input-group:not(.has-validation)>.custom-select:not(:last-child), .input-group:not(.has-validation)>.form-control:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.box {
    position: absolute;
    top: 20%;
    left: -30%;
    transform: translate(-50%, -50%);
    width: 525px;
    height: 550px;
    border-radius: 50%;
    overflow: hidden;
    animation: rotate-animation 10s infinite linear;
}

.box img {
    width: 100%;
}

/* .box:before {
    content: '';
    position: absolute;
    top: 0;
    left: -150px;
    width: 100px;
    height: 100%;
    background: rgba(255, 255, 255, 30%);
    transform: skewX(-30deg);
    z-index: 1;
    transition: 0.5s;
}

.box:hover:before {
    left: 280px;
} */

@keyframes rotate-animation {
	0% {
		transform: rotate(0deg);
  }
  50% {
		transform: rotate(180deg);
	}
	100% {
		transform: rotate(360deg);
	}
}


.box-logo {
    /* position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%); */
    width: 300px;
    overflow: hidden;
}

.box-logo img {
    width: 100%;
}

#togglePassword {
    background: none;
    border: none;
    padding: 0;
    color: #999999;
}

.titulo-principal{
    position: relative;
    max-width: 800px;
    text-align: center;
    text-transform: uppercase;
    margin: 60px auto;
    font-family:'audiowide', 'arial';
    color: #fff;
    background: -webkit-linear-gradient(-120deg, #eee, #333 79%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 1;
}

.titulo-principal:after{
    content: '|';
    margin-left: 5px;
    opacity: 1;
    animation: pisca .7s infinite;
    -webkit-text-fill-color: #b2b2b2;
}


.link-maximo {
    color: #1ad07d !important;
    text-decoration: none !important;
    background-color: transparent !important;
    transition: .6s !important;
}

.link-maximo:hover {
    color: #049150 !important;
    text-decoration: none !important;
}

/* Animação aplicada ao content referente a classe *.titulo-principal* resultando num efeito de cursor piscando. */

@keyframes pisca{
    0%, 100%{
        opacity: 1;
    }
    50%{
        opacity: 0;
    }
}

@media screen and (max-width: 1366px) {
    /* .box {
        position: absolute;
        top: 20%;
        left: -30%;
        transform: translate(-50%, -50%);
        width: 400px;
        height: 400px;
        border-radius: 50%;
        overflow: hidden;
        animation: rotate-animation 10s infinite linear;
    } */
}

@media screen and (max-width: 767px) {
    .login-page, .register-page {
        background: url('/dist/img/background_flag_maximo.png') no-repeat;
        background-position: center;
    }

    .pentagono {
        display: none !important;
    }

    .box {
        display: none;
    }

    .oficina .container {
        display: none;
    }
}