  body {
            margin: 0;
            font-family: Arial, Helvetica, sans-serif;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            background-image: url('../images/fundo.jpeg');
        }
        header{
            background: #007b8f;
            color: rgb(255, 255, 255);
            text-align: center;
            padding: 15px;
            font-size: 24px;
            font-weight: bold;
        }
        footer{
            background: #007b8f;
            color: #ffffff;
            text-align: center;
            padding: 10px;
            margin-top: auto;
        }
        main{
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }
    
        .container {
            text-align: center;
            background: #f5f5f5;
            padding: 30px 65px;
            border-radius: 10px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        .user{
            margin: 10px auto;
            padding: 12px 88px;
        }
        button{
            display: block;
            margin: 10px auto;
            padding: 12px 85px;
            font-size: 26px;
            border: none;
            border-radius: 8px;
            background: #007b8f;
            color: #f5f5f5;
            cursor: pointer;
            transition: 0,3s;
        }
        button:hover{
            background: #016474;
        }
        