/* Geral */
body {
    background-color: #000;
    background-size: cover;
    background-position: center;
    color: #f8f9fa;
    margin: 0;
}

a {
    color: rgb(208, 198, 237);
    font-weight: bold;
}

a:hover {
    color: rgb(233, 215, 208);
}

/* Layout */
.login-layout {
    background-color: #0c4356;
    ;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login-layout__main-container {
    background-color: #0c1e30;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 100%;
}

.center-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Estilos de Texto */
.heading-color {
    color: whitesmoke;
    font-weight: bold;
}

.field-text {
    color: rgb(245, 232, 232);
}

.page__heading {
    margin-top: 20px;
    font-size: 2rem;
}

/* Botões */
.btn-lg {
    padding: 12px 26px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.identify-button {
    background-color: rgb(59, 207, 207);
}

.identify-button:hover {
    background-color: rgb(186, 199, 225);
    color: white;
}

.login-button {
    background-color: rgb(227, 211, 211);
}

.login-button:hover {
    background-color: rgb(163, 133, 220);
    color: white;
}

.register-button {
    background-color: rgb(157, 142, 155);
}

.register-button:hover {
    background-color: rgb(86, 59, 138);
    color: white;
}

.btn-primary {
    background-color: #007bff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background-color: #0056b3;
}

/* Formulários */
.form--gutter {
    padding: 20px;
    background-color: #0c4356;
    ;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-control {
    border-radius: 8px;
    background-color: #ced4da;
    border: 1px solid #adb5bd;
    color: #495057;
}

.form-control:focus {
    box-shadow: none;
    border-color: #007bff;
}

.form-control-lg {
    font-size: 16px;
    padding: 25px 20px;
}

.form-label {
    font-weight: bold;
    text-align: left;
    display: block;
    margin-bottom: 5px;
}

/* Checkboxes */
.checkbox-container {
    display: flex;
    gap: 20px;
    /* Espaço entre os checkboxes */
    align-items: center;
    /* Alinha verticalmente os itens dentro do container */
}

/* Checkboxes */
/* Checkboxes */
.form-check {
    display: block;
    /* Garante que cada checkbox-label seja exibido em um bloco separado */
    margin-bottom: 10px;
    /* Espaço entre as linhas, se necessário */
}

.form-check-input {
    margin-right: 10px;
    /* Espaço entre o checkbox e a label */
    vertical-align: middle;
    /* Alinha verticalmente o checkbox */
}

.form-check-label {
    color: whitesmoke;
    font-weight: normal;
    vertical-align: middle;
    /* Alinha verticalmente a label */
}


/* Imagens */
.image-size-small {
    width: 140px;
    margin: 0 auto;
}

/* Alertas */
.alert {
    margin-top: 20px;
}

.alert-warning {
    background-color: rgba(255, 255, 255, 0.8);
    border-color: #f8d7da;
}

.alert-danger {
    background-color: rgba(255, 0, 0, 0.2);
    border-color: #f5c6cb;
}

/* Placeholder */
::placeholder {
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* Outros */
.rectangule-color {
    background-color: rgba(147, 77, 209, 0.4);
    padding: 20px;
    border-radius: 8px;
}

.checkbox {
    color: whitesmoke;
}