@font-face {
    font-family: Montserrat-Regular;
    src: url(../fonts/montserrat/Montserrat-Regular.ttf);
}
@font-face {
    font-family: Montserrat-ExtraBold;
    src: url(../fonts/montserrat/Montserrat-ExtraBold.ttf);
}
@font-face {
    font-family: Montserrat-Bold;
    src: url(../fonts/montserrat/Montserrat-Bold.ttf);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body, html {
    height: 100%;
    font-family: Montserrat-Regular, sans-serif;
}
a {
    font-family: Montserrat-Regular, serif;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
    transition: all .4s;
}
a:focus {
    outline: none !important;
}
a:hover {
    text-decoration: none;
    color: #fff;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
}
p {
    font-family: Montserrat-Regular, serif;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}
ul, li {
    margin: 0;
    list-style-type: none;
}
input, textarea {
    outline: none;
    border: none;
}
textarea:focus, input:focus {
    border-color: transparent !important;
}
input:focus::placeholder, textarea:focus::placeholder {
    color: transparent;
}
input::placeholder, textarea::placeholder {
    color: #999;
}
button {
    outline: none !important;
    border: none;
    background: transparent;
}
button:hover {
    cursor: pointer;
}
iframe {
    border: none !important;
}
.limiter {
    width: 100%;
    margin: 0 auto;
}
.container-login100 {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center;    /* Centraliza verticalmente */
    padding: 15px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}
.container-login100::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to top, #ffffff, #313A46);
    opacity: .3;
}
.wrap-login100 {
    width: 390px;
    background: rgba(255, 255, 255, 0.8); /* Fundo branco com opacidade */
    padding: 30px; /* Espaçamento interno */
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 15px; /* Cantos arredondados */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Sombra para destaque */
    position: relative;
    z-index: 2;
    margin: 0 auto; /* Centraliza horizontalmente */
}
.login100-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.login100-form-title {
    font-family: Montserrat-ExtraBold, serif;
    font-size: 24px;
    color: #737373;
    line-height: 1;
    text-align: center;
    width: 100%;
}
.login100-form-subtitle {
    font-family: Montserrat-ExtraBold, serif;
    font-size: 18px;
    color: #737373;
    line-height: 1.2;
    text-align: center;
    width: 100%;
}
.login100-form-avatar {
    width: 120px;
    height: 120px;
    overflow: hidden;
    margin-bottom: 10px;
}
.login100-form-avatar img {
    width: 100%;
}
.wrap-input100 {
    position: relative;
    width: 100%;
    z-index: 1;
    margin-bottom: 10px;
}
.input100 {
    font-family: Montserrat-Bold, serif;
    font-size: 15px;
    line-height: 1.2;
    color: #333;
    display: block;
    width: 100%;
    background: #fff;
    height: 50px;
    border-radius: 15px;
    padding: 0 30px 0 53px;
}
.focus-input100 {
    display: block;
    position: absolute;
    border-radius: 15px;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    box-shadow: 0 0;
    color: rgba(127,117,99,.6);
}
.input100:focus + .focus-input100 {
    animation: anim-shadow .5s ease-in-out forwards;
}
@keyframes anim-shadow {
    to {
        box-shadow: 0 0 80px 30px;
        opacity: 0;
    }
}
.symbol-input100 {
    font-size: 15px;
    color: #999;
    display: flex;
    align-items: center;
    position: absolute;
    border-radius: 25px;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-left: 30px;
    pointer-events: none;
    transition: all .4s;
}
.input100:focus + .focus-input100 + .symbol-input100 {
    color: #333333;
    padding-left: 23px;
}
.container-login100-form-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 0px;
}
.footers {
    font-family: Montserrat-Bold, serif;
    font-size: 16px;
    color: #737373;
    line-height: 1.5;
    text-align: center;
    width: 100%;
    margin-top: 10px;
    font-weight: normal;
}
.login100-form-btn {
    font-family: Montserrat-Bold, serif;
    font-size: 15px;
    line-height: 1.5;
    color: #ffffff;
    width: 100%;
    height: 50px;
    border-radius: 15px;
    background: #555347;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
    transition: all .4s;
    position: relative;
    z-index: 1;
}
.login100-form-btn::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    top: 0;
    left: 0;
    background: #B6921D;
    transition: all .4s;
    opacity: 0;
}
.login100-form-btn:hover {
    background: transparent;
    color: #fff;
}
.login100-form-btn:hover::before {
    opacity: 1;
}

.container-login100 {
    background: linear-gradient(135deg, #F4F4F1 0%, #e6e6e4 100%);
    position: relative;
    overflow: hidden;
}

.background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, #55534722 25%, transparent 25%),
        linear-gradient(-45deg, #55534722 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #55534722 75%),
        linear-gradient(-45deg, transparent 75%, #55534722 75%);
    background-size: 20px 20px;
    opacity: 0.1;
    z-index: 1;
}

.wrap-login100 {
    position: relative;
    z-index: 2;
}

.wrap-login100::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, 
        transparent 0%,
        #D9B022 20%,
        #fcd96c 50%,
        #D9B022 80%,
        transparent 100%
    );
}

/* Ajuste para garantir que o formulário fique sobre o padrão de fundo */
.login100-form {
    position: relative;
    z-index: 3;
}

@media(max-width:992px) {
    .alert-validate::before {
        visibility: visible;
        opacity: 1;
    }
}
@media(max-width:576px) {
    .wrap-login100 {
        padding-top: 30px;
        padding-left: 15px;
        padding-right: 15px;
    }
}