* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body, html {
    height: 100%;
    background: linear-gradient(to bottom, #121426, #101223);
}

.container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-box {
    background: white;
    border-radius: 15px;
    padding: 40px;
    width: 350px;
    box-shadow: 0 0 25px rgba(0,0,0,0.4);
    text-align: center;
}

.login-box-quadrado {
    background: white;
    border-top-left-radius:  30px;
    border-bottom-right-radius: 30px;
    padding: 40px;
    width: 350px;
    box-shadow: 0 0 25px rgba(0,0,0,0.4);
    text-align: center;
}
.logo-area img {
    height: 40px;
    margin-bottom: 15px;
}

.logo-area h2 {
    margin-top: 10px;
    font-size: 18px;
    color: #333;
}

.empresa {
    font-size: 12px;
    color: #666;
    margin-bottom: 25px;
}

form {
    text-align: left;
}

label {
    font-size: 13px;
    color: #444;
    margin-bottom: 5px;
    display: block;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #eaf1fc;
}

.password-wrapper {
    position: relative;
}

.password-wrapper .toggle-eye {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: #555;
}

.link {
    display: block;
    text-align: center;
    font-size: 12px;
    color: #007bff;
    margin-bottom: 20px;
    text-decoration: none;
}

.btn-entrar,
.btn-sienge-id {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 14px;
}

.btn-entrar {
    background-color: #007bff;
    color: white;
}

.btn-sienge-id {
    background-color: #1a5dac;
    color: white;
}

.versao {
    font-size: 11px;
    margin-top: 10px;
    color: #999;
}


.cards-container {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.card {
  background-color: #f5f5f5;
  padding: 20px;
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 0 10px #ccc;
  text-align: center;
}

.card h3 {
  margin-bottom: 10px;
}


