
        body {
            margin: 0%;
            font-family: arial, sans-serif;
            background-color: #fdf5e7;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100vh;
        }

        h2 {
            color: #81c7b4;
            margin-bottom: 10px;
        }

        .criar_conta-container {
            background-color: #81c7b4;
            padding: 20px 60px;
            border-radius: 15px;
            text-align: center;
            width: 300px;
            box-shadow: 0px 4px 8px black;
        }

        label {
            font-weight: bold;
            margin: top 10px;
            color: #69412a;
        }

        input[type="email"],
        input[type="password"] {
            width: 100%;
            padding: 8px;
            margin-top: 5px;
            border-radius: 20px;
            border: none;
            outline: none;
            
        }

        button {
            background-color: #4caf50;
            border: none;
            padding: 10px 20px;
            border-radius: 20px;
            color: white;
            font-weight: bold;
            cursor: pointer;
            width: 70%;
            
        }
        sup{
            color: #e53835;
        }
        /* ==============================
   RODAPÉ
   ============================== */
footer {
  text-align: center;
  padding: 1rem 0;
  font-weight: bold;
  font-family: "montserrat", arial, monospace;
  margin-bottom: 0px;
}

footer a {
  text-decoration: none;
  color: black;
  font-size: 1rem;
}

footer a:hover {
  color: rgb(16, 54, 16);
}
        
        @media ( max-width: 600px){
            body{
                flex-direction: column;
            }
            img{
                max-width: 375px;
                margin-bottom: 1.5rem;
            }
            .criar_conta-container {
                width: 300px;
                max-width: 360px;
                margin: 1rem auto;
                box-sizing: border-box; 
            }
            .criar_conta-container button {
                width: 100%;
                max-width: 320px; 
                padding: 0.65rem; 
                font-size: 0.8rem;
                border-radius: 8px;
                box-sizing: border-box;
            }
        }

        @media(max-width: 1280px){
            .criar_conta-container {
                max-width: 750px;
                margin: 1rem auto;
                box-sizing: border-box;
                width: 400px;
            }
            .criar_conta-container label{
                text-align: left;
            }
            .criar_conta-container button {
                width: 100%;
                max-width: 320px; 
                padding: 0.65rem; 
                font-size: 0.8rem;
                border-radius: 8px;
                box-sizing: border-box;
            }
        }