/* Estilos gerais */
body.has-bg {
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    background: #f6993f;

    min-height: 100vh;
    /*font-family: 'Roboto', sans-serif;*/

}

.login-box {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-box-wrapper {

    width: 100%;
    max-width: 1300px;
    margin: auto;
}

/* Container principal */
.img-bg {
    /*background: white;*/
    border-top-left-radius: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    min-height: 550px;
}

.mh {
    min-height: 650px;
    display: flex;
    flex-direction: column;
}

/* Lado esquerdo - imagem/texto */
.login-box-img {
    background: url('/img/bg-login-2.png') no-repeat;
    /* Aumenta a imagem em 20% e a desloca para a esquerda */
    /*background-size: 120%;*/
    /*background-position: 80% 10%; !* Ajuste os valores para transladar a imagem como desejar *!*/
    background-size: cover;
    /*background-position-x: -200px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    /*padding: 40px;*/
    width: 100%;
    height: 100%;
    font-family: 'Montserrat', sans-serif;
}

.wrapper {
    text-align: center;
}

.text-login {
    background: #f6993f;
    color: white;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 500;
    margin: 10px 0;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Lado direito - formulário */
.card {
    border: none;
    border-radius: 0;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
    margin-left: -40px;
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card .body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

.card .body img {
    max-width: 180px;
    margin: 0 auto 30px;
}

.card .body h3 {
    font-size: 18px;
    font-weight: 400;
    color: #333;
    margin-bottom: 30px;
}

/* Formulário */
.form-group.full-border {
    margin-bottom: 20px;
}

.form-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
    display: block;
}

.form-line {
    position: relative;
}

.form-control {
    border-radius: 4px;
}

.form-control:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}



/* Links e informações */
.align-right {
    text-align: right;
}

.text-end a {
    color: #666;
    font-size: 13px;
    text-decoration: none;
}

.text-end a:hover {
    color: #ff6b35;
    text-decoration: underline;
}

.contact-info {
    margin-top: auto;
    padding-top: 20px;
}

.contact-info h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.contact-info p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Animações */
/*.animated.fadeIn {*/
/*    animation: fadeIn 0.5s ease-in;*/
/*}*/

/*@keyframes fadeIn {*/
/*    from {*/
/*        opacity: 0;*/
/*    }*/
/*    to {*/
/*        opacity: 1;*/
/*    }*/
/*}*/

/* Classes utilitárias */
.m-t-15 {
    margin-top: 15px;
}
.m-b--20 {
    margin-bottom: -20px;
}
.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.img-responsive {
    max-width: 100%;
    height: auto;
}

.versao {
    position: fixed;
    bottom: 5px;
    right: 10px;
    font-size: 10px;
    color: #eee;
    z-index: 9999;
}
