* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: url('bg2_guardiao.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}


.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    position: relative;
}


.branding {
    flex: 1;
    color: white;
    text-align: left;
}

.branding .logo {
    width: 100px;
    margin-bottom: 10px;
}

.branding h1 {
    font-size: 60px;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.branding p {
    font-size: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

/* Caixa de login */
.login-box {
    background: #d8dbe1;
    padding: 30px;
    width: 350px;
	height: 400px;
    border-radius: 1px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    text-align: left;
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
}

/* Logo SDA */
.sda-logo {
    width: 200px;
    margin-bottom: 20px;
}


form {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 14px;
    font-weight: bold;
    text-align: left;
}

input {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

button {
    background: #009688;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    font-size: 16px;
}

button:hover {
    background: #00796b;
}

a {
    display: block;
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #009688;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
/* Mensagem de erro */
#id_error_display_fixed {
	position: fixed;
    left: 50%;
    transform: scale(0.9);
    top: 50%;
    /*padding: 20px;*/
    background-color: #FFCDD2; /* Vermelho claro */
    color: #B71C1C; /* Vermelho escuro */
    border: 2px solid #D32F2F; /* Borda vermelha */
    border-radius: 10px; /* Bordas arredondadas */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombreamento */
    font-family: Arial, sans-serif;
    text-align: center; /* Centralizar o texto */
    z-index: 1000; /* Garantir que fique acima de outros elementos */
    width: 300px; /* Largura fixa para melhor visualização */
}

/* Ícone de alerta */
#id_error_display_fixed::before {
    /*content: "⚠️";*/ /* Adiciona um ícone de alerta */
    display: block;
    font-size: 40px;
    margin-bottom: 10px;
}

/* Texto da mensagem */
td.scFormErrorMessage {
    font-size: 16px; /* Tamanho maior */
    font-weight: bold;
    line-height: 1.6;
}

/* Botão fechar */
a.scButton_default {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    border: 1px solid #D32F2F;
    border-radius: 5px;
    padding: 5px 10px;
    text-decoration: none;
    color: #FFFFFF;
    background-color: #D32F2F;
    transition: background-color 0.3s ease;
}

a.scButton_default:hover {
    background-color: #B71C1C;
    color: #FFFFFF;
}

/* Fim da mensagem */