/* Corpo e fundo */
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #ff9800, #f44336);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container do formulário */
.form-container {
    background: white;
    width: 350px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 30px;
    text-align: center;
    position: relative;
    
}


/* Logo no topo */
.logo i {
    display: inline-block;
    background: #ff9800; /* Cor de fundo */
    border-radius: 50%;  /* Deixa o elemento circular */
    width: 70px;         /* Largura fixa para garantir o círculo */
    height: 70px;        /* Altura fixa para garantir o círculo */
    display: flex;       /* Centraliza o ícone */
    align-items: center; /* Alinha verticalmente */
    justify-content: center; /* Alinha horizontalmente */
    font-size: 30px;     /* Tamanho da fonte do ícone */
    color: white;        /* Cor do ícone */
    margin: 0 auto 20px; /* Centraliza e adiciona margem abaixo */
}


/* Título */
h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
}

/* Inputs */
input[type="text"],
input[type="email"],
input[type="password"] {
    width: 80%;
    padding: 15px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 10px;
    outline: none;
    font-size: 14px;
}

/* Botão de login */
button {
    background: #000;
    color: white;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s ease;
}

button:hover {
    background: #333;
}

/* Texto de cadastro */
p {
    font-size: 14px;
    color: #555;
    margin-top: 15px;
}

p a {
    color: #ff9800;
    text-decoration: none;
    font-weight: bold;
}

p a:hover {
    text-decoration: underline;
}

/* Estilização adicional para o design */
.form-container:before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    top: -50px;
    left: calc(50% - 50px);
    background: linear-gradient(135deg, #ff9800, #f44336);
    border-radius: 50%;
    z-index: -1;
}

body:after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: 20%;
    right: 10%;
    z-index: 0;
}

/* Estilo para a mensagem de erro */
.success-message {
    color: green;
}

.error-message {
    color: red;
}

