/* form.css */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f1f1f1;
}

.container {
    display: flex;
    height: 100vh;
}

/* LADO ESQUERDO (Informações + blocos coloridos) */
.info-box {
    flex: 1;
    width: 55%;
     background-image: url("./img/imagemm.png");
         background-color: #2ca66c;
     background-size: cover;
background-position: center;
background-repeat: no-repeat;

    /* clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%); */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-box p {
    background-color: #00f46e;
    text-align: center;
    color: white;
    padding: 30px;
    font-size: 18px;
    width: 70%;
    border-radius: 5px;
}

/* Quadrado vermelho no topo 
.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: #e53935;
    width: 45px;
    height: 70px;
}*/

/* Quadrado amarelo embaixo 
.info-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #fdd835;
    width: 45px;
    height: 70px;
} */

/* LADO DIREITO (Formulário) */
.login-box {
    flex: 1;
    /*background-color: #c2d1a3; */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
     /* clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%); */
}

/* Logo (invisível mas com espaço reservado) */
.logo-placeholder {
    width: 230px;
    height: 230px;
    /* background-color: #dddddd; */
    border-radius: 50%;
    margin-bottom: 20px;
}

/* Formulário */
form {
    background-color: #fff;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    width: 280px;
    margin-bottom: 20px;
}

label {
    font-weight: bold;
    margin-top: 10px;
}

input {
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}



.botoes {
    display: flex;
    justify-content: center;
}

.botoes button {
    background-color: #2ca66c;
    font-size: 14pt;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    
}

.botoes button:hover {
    background-color: #239e5b;
}

/* Contato */
.contato {
    font-size: 0.9em;
    text-align: center;
    color: #333;
    background-color: #fff;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    width: 280px;
    margin-bottom: 20px;
}

/* Rodapé com espaço para ícones */
.icones-rodape {
    background-color: #fff;
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
}

.icone-placeholder {
    width: 50px;
    height: 50px;
    background-color: #2d2d2d;
}

.btn-cadastrar {
  display: inline-block;
  padding: 10px 25px;
  background-color: #007BFF;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  margin-left: 20px;
  font-size: 14px;
  font-weight: bold;
}

.btn-voltar {
  display: inline-block;
  padding: 10px 25px;
  background-color: #007BFF;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  margin-left: 10px;
  font-size: 14px;
  font-weight: bold;
  margin-right: 15px;   /* separa do botão cadastrar */
  
}

.btn-cadastrar:hover {
  background-color: #0056b3;
  
}

.btn-voltar:hover {
  background-color: #0056b3;
}

.alert-error {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #0ecd0b;
    color: #856404;
    border: 1px solid #0cce0c;
    border-radius: 5px;
    padding: 12px 16px;
    font-weight: bold;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.alert-content {
    display: flex;
    align-items: center;
}

.alert-icon {
    margin-right: 10px;
}

.alert-close {
    cursor: default;
}