/* Estilos simplificados para a página de login */
body {
    background-color: var(--dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.h-100 {
    height: 100%;
}

.app-container {
    width: 100%;
}

.app-login-box {
    background-color: #fff;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 450px;
}

.app-login-box h3 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.2rem;
    font-weight: 500;
}

.logo-container {
    text-align: center;
    margin-bottom: 1.5rem;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 100%;
}

.divider {
    height: 1px;
    background: #e9ecef;
    margin: 0.8rem 0;
}

.form-control-lg {
    padding: 0.6rem 1rem;
    font-size: 1rem;
    border-radius: 4px;
    height: calc(2.2em + 0.75rem + 2px);
}

.form-label {
    margin-bottom: 0.3rem;
    font-weight: 500;
    font-size: 1rem;
}

.form-check-input {
    margin-top: 0.25rem;
    margin-left: 0;
}

.form-check-label {
    margin-left: 1.5rem;
    font-size: 0.9rem;
}

/*
.btn-pill {
    border-radius: 50px;
}

.btn-primary {
    background-color: #f18622;
    border-color: #f18622;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    box-shadow: none;
    border-radius: 50px;
    color: #fff;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #e67e22;
    border-color: #e67e22;
    box-shadow: none;
    color: #fff;
}
*/

.btn-login {
    width: auto;
    min-width: 80px;
}

.btn-recover {
    width: auto;
    min-width: 140px;
}

/*
.btn-lg.btn-block {
    width: 100px;
}
*/

/* Ajustes de layout e margens */
.ml-3 {
    margin-left: 1rem;
}

.mr-3 {
    margin-right: 10px;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.d-flex {
    display: flex;
}

.d-block {
    display: block;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-end {
    justify-content: flex-end;
}

.justify-content-between {
    justify-content: space-between;
}

.ms-auto {
    margin-left: auto;
}

/* Campos de formulário */
.form-control {
    height: auto;
    padding: 0.6rem 1rem;
    border-radius: 4px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    font-size: 0.9rem;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem var(--focus);
}

/* Links e textos */
/*
a {
    color: #f18622;
    transition: all 0.2s;
    font-size: 0.9rem;
}

a:hover {
    color: #e67e22;
    text-decoration: none;
}
*/

.position-relative {
    position: relative;
}

.white-space-nowrap {
    white-space: nowrap;
} 